Hi FOLKS,
if you tried to wirte Response.redirect() in Global.asax you will get this error :
Response is not available in this context."
to resolve this problem,just replace :
response.redirect()
to Server.Transfer()
the problem happens because of the Response.Redirect is working if there's a HTTP handler for the current request,which is not the case in Global Errors raised in global.asax.
happy .netting.
Regards,
Moustafa arafa
4 comments:
I try
Server.Transfer("frmInstall.aspx"), but still dont work.
Any ideia, thanks.
Server.Transfer is also not working
Server.Transfer is not working.
It is not working
Post a Comment