I have a user control embedded in the master page. The user control has a button and an image button. Clicking on the image button would redirect me to a particular page. The intended works just fine in all pages except one. When i look into the generated HTML source, i see that the code generated for the button in the page where it doesnt work is
<a id="ctl00_AccountidPanel_usercontrol_homeLink" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$AccountidPanel$usercontrol$homeLink", "", true, "", "", false, true))">Go to Home</a>
and in the other pages it is
<a id="ctl00_AccountidPanel_usercontrol_homeLink" href="javascript:__doPostBack('ctl00$AccountidPanel$usercontrol$homeLink','')">Go to Home</a>
It looks like the code is not getting executed correctly. I think it's just a matter of finding what is different about this page. That's hard to do without knowing more about the structure of your site, how the code is put together, etc. (At least for me.)