eWebEditor Home >> eWebEditor Manual V11.2 >> Developer Guide >> Retrieving code from a form post

3.4.1 Large Size Text Process

The function is only valid in ASP environment version.

Under ASP developing environment, the input frame is limited by 102399 bytes (about 100K), so large size files cannot be submitted nor received correctly. eWebEditor has its own processing mechanism to deal with this limitation. It will not be bounded by this limitation. Theoretically, it supports files of infinite size.

But when receiving the contents submitted by forms, you should use the following method.

 

Common method to acquire value:

<%

  sContent = Request.Form("content1")

%>

 

Method to acquire large-size text value:

<%

sContent = ""

For i = 1 To Request.Form("content1").Count

  sContent = sContent & Request.Form("content1")(i)

Next

%>