Click here to Skip to main content
15,901,505 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI ,

In a button click event Response.Redirect is not working in IE. But it is working in ff and chrome fine.

after googling i tried these also like

C#
Response.Redirect("deliverypage.aspx");

Response.Redirect("deliverypage.aspx",false);

in script block, i tried this also
C#
window.open("deliverypage.aspx");

HTML
server.transfer("deliverypage.aspx");
is also not working --> when i call server.transfer the page load event in deliverypage is also firing, but the my page is not redirecting.
Posted
Updated 8-Aug-12 2:21am
v3

If you using query-string means I.E. Only accepts up to 2083 characters. Firefox,Chrome and others do not.
 
Share this answer
 
Comments
Prasad_Kulkarni 8-Aug-12 8:27am    
My 5!
Try:
C#
Response.Redirect("~/deliverypage.aspx");
 
Share this answer
 
Comments
ganesh_kanc 8-Aug-12 9:08am    
thanks prasad for giving reply,
i tried this also but no use.. and i am not using any query strings also
On client side you should change window.location.href property to redirect current window to another url.
See: http://www.ezineasp.net/post/Javascript-Window-Location-Href-URL.aspx[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900