Problem posting data, page reloaded not processed

  • Thread starter Thread starter Anibal Acosta
  • Start date Start date
A

Anibal Acosta

Hello, I have problems with my aspx page. The problem is in certain number
of client (Browsers) not all of them.

When the client try to submit a form, the aspx don't process the request,
just reload the same page setting al fields to the default value.


Thanks for your time.

AA
 
this is generally caused by a postback where the code behind expects a
onclick/onchange event, but the broswer did not send one. the effect is only
form_load is called.

IE has a couple bugs that can cause this:

1) hitting enter on a form with only one submit button, does not alway send
the button name as required (ie 5.0+/6.0+)
2) return false; on a button click does not always cancel post (IE 6.0),
again a post is done with no button name

-- bruce (sqlwork.com)
 
So, I can't do nothing?

Is a IE Bug?


Thanks

bruce barker said:
this is generally caused by a postback where the code behind expects a
onclick/onchange event, but the broswer did not send one. the effect is only
form_load is called.

IE has a couple bugs that can cause this:

1) hitting enter on a form with only one submit button, does not alway send
the button name as required (ie 5.0+/6.0+)
2) return false; on a button click does not always cancel post (IE 6.0),
again a post is done with no button name

-- bruce (sqlwork.com)
 
Back
Top