What is the equivalent of
Response.Redirect("abc.aspx",false)
when i use Server.Transfer instead of Response.Redirect.I use false as the second param of Response.Redirect to stop receiving the ThreadAbort exception in a try catch block
I want to get rid of the Thread.Abort exception when i use Server.Transferis in a try catch block. Any thoughts ?