giammin

Asp.net graceful redirect

Mar 26th, 2012
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 0 0
  1. // redirect without threadabort
  2. CurrentContext.Response.Clear();
  3. CurrentContext.Response.Redirect("~/Default.aspx",false);
  4. CurrentContext.ApplicationInstance.CompleteRequest();
Advertisement
Add Comment
Please, Sign In to add comment