I have an aspx page which uses pagemethods to update pulldowns without firing postbacks.
The problem is it changed the submit button's onclick event to:
onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("submitter", "", true, "", "", false, false))
instead of firing the c# method it was using before pagemethods.
How do I get the paget to used the c# code instead of overwritting it with this?
The problem is it changed the submit button's onclick event to:
onclick="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("submitter", "", true, "", "", false, false))
instead of firing the c# method it was using before pagemethods.
How do I get the paget to used the c# code instead of overwritting it with this?