I wrote some code with response.redirect() and server.transfer() for transffering from one page to another
without any try and catch block which worked fine.But as soon as i put try and catch block it gave a strange exception
"Unable to evaluate the expression because the code is optimized or a native frame on top of the call stack".I assume it is because of ThreadAbort Exception.So i added another parameter "false" to response.redirect().But what to with server.trtansfer().What i found was to use server.execute() method instead of server.transfer().I don't know how to use it.Please help me out.
Thanks in advance