lesmemphis said:
cheong said:
*snip*
I'm not sure I understand your solution. You mean that the event will fire once a postback occurs, but that you have to insert a seperate submit field to invoke the postback?
Yes, the bug condition and the workaround I said applies to .NET v1.1 web applications, in quite consistant manner.
I have not verified if this trick is needed in v2.0 or above, so you should try to deduce it yourself.
Just create a new webform with just a dropdownlist in a form tag, and put the server side event for onchange there to see if it works.
If it just works, then possibly some of your origional pages tag got overlapped/not closed so your form is not the parent of the dropdownlist. A simple "javascript: alert(document.getElementById("Pax").parent)" in address bar should help you check for that.
If not, add a submit button and click it after you changed dropdownlist item. If it's noscript problem, your server-side code won't fire even if you "clicked" the submit button. If it's just javascript problem, you should be able to see little yellow triangle
on the corner of your browser flagging javascript in your page is broken.
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.