_doPostBack method is not working in Firefox

SuperDuperD

New Member
I have a scenario in which i have to do a postback and after that i have to redirect it to some other page the thing page is in iframe so i have to redirect it in the parent so have to do it client side.some code \[code\]function CallResponseList(){ var hfRefID = document.getElementById('<%=hfRefID.ClientID %>'); $("#hdnResponse").val(1); __doPostBack('<%= lbtest.UniqueID %>',null); window.parent.location.href='http://stackoverflow.com/questions/6353832/ResponseList.aspx?ref=1&surveyID=2 HideChartPopup(); }\[/code\]the problem is: it work fine with IE but in Firefox. It did not wait for the response of post back and redirect it to other page.How to make it wait for the response in Firefox?
 
Top