Tagged Questions

2
votes
2answers
47 views

ASP.NET POST-DATA truncated at 49152 bytes (48K)

I'm getting errors where viewstate couldn't be decoded, and some of the errors trace to the fact that http post data was truncated at exactly 48K (49152) bytes. This was listed as one of the fixed ...
1
vote
1answer
218 views

Get value from session or request?

currently i have code that does var req = HttpContext.Current.Request; if(!isNull(req["title"], req["desc"], req["tags"])) { doSomthing();} on certain cases i move title into session data then ...
0
votes
3answers
828 views

ASP.NET custom control: when is LoadPostData() called?

I have developed a custom control that extends ListBox. The idea is that the control 'remembers' modifications to its elements which occurred client-side, e.g. as a result of an AJAX request. The ...