Postback form .NET bug

  • Thread starter Thread starter Tim Mavers
  • Start date Start date
T

Tim Mavers

I am having a problem that I swore I read about a long time ago and it was a
..NET service-pack/hotfix bug.

The problem right now is that whenever I try to postback on form, it simply
does nothing. I distinctly remember the issue being fixed by a hotfix, but
I can't remember which one. I can't seem to find anything on google either.

Anyone remember this or have a link to a KB article?

I think it had something to do with the aspnet_client files directory and
where it was stored.
 
This might be a dumb suggestion, but did you add the code to check if it
was postback or not?

if(!page.postback) {
//do something
}

Sorry cannot think of anything else at the moment - its late here.

Amit.
www.desigeek.com
 
Does this happen on multiple browsers/multiple machines?

I have seen this happen with IE occassionally. IE Would call the post back,
but the form would be empty. I have verified this by simply having a test
form page that lists the items in the posted back form. When IE is in a bad
state, there are no items posted back.

The only way I've been able to clear this state is to delete the user's
cookies, as even a reboot didn't help.
I haven't seen this problem in other browsers (Firefox, Netscape, etc).

Could be a completely seperate issue than they one you are having also.

Steve
 
Back
Top