E
EricY
We have an intermittent issue where it appears that the form is being
truncated after exactly 1008 characters. This causes server-side code
to fail as it is expecting certain fields to exist. To figure out
what is happening we started logging the entire form to our log table
when an error occurs. What we are seeing is that the form is being
cut off after 1,008 characters.
When I say it is cut off, I mean it looks like this example:
A normal form:
"txtInput1=123&txtInput2=456&txtInput3=789"
Truncated form:
"txtInput1=123&txtInput2=456&txtIn"
The cutoff point varies in the form depending on the size of the field
values, but the length of the value stored is always 1008 characters.
We wrapped tags around the form so that we would be sure to capture
the entire thing when we logged it. Forcing an error on a dev server
so that a correct form would be logged shows that a normal form is
around 1,500 characters or so.
This is happening on a classic asp page but we also have .net 2.0 code
running in the same app. Servers are running windows 2003.
Has anyone ever experienced this?
Thanks for any help...
Eric
truncated after exactly 1008 characters. This causes server-side code
to fail as it is expecting certain fields to exist. To figure out
what is happening we started logging the entire form to our log table
when an error occurs. What we are seeing is that the form is being
cut off after 1,008 characters.
When I say it is cut off, I mean it looks like this example:
A normal form:
"txtInput1=123&txtInput2=456&txtInput3=789"
Truncated form:
"txtInput1=123&txtInput2=456&txtIn"
The cutoff point varies in the form depending on the size of the field
values, but the length of the value stored is always 1008 characters.
We wrapped tags around the form so that we would be sure to capture
the entire thing when we logged it. Forcing an error on a dev server
so that a correct form would be logged shows that a normal form is
around 1,500 characters or so.
This is happening on a classic asp page but we also have .net 2.0 code
running in the same app. Servers are running windows 2003.
Has anyone ever experienced this?
Thanks for any help...
Eric