asp.net could a half submitted web page be processed?

Posted by c00ke on Stack Overflow See other posts from Stack Overflow or by c00ke
Published on 2010-04-21T09:59:00Z Indexed on 2010/04/21 10:03 UTC
Read the original article Hit count: 152

Having a weird bug in production and just wondering if it's possible for a half submitted web page to processed by the server?

The page has no view state just using plain old html controls and accessing data displayed in repeater on the back end via Request.Form[name] etc.

Is it possible for a request to be truncated perhaps due to lost internet connection and the page still processed by the server. Therefore if field not part of the request Request.Form[name] could result in null?

I know can use fiddler to modify request but unfortunately we are not allowed to change group policy and change the proxy!

Many Thanks

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about page-lifecycle