Advertisement
Guest User

Untitled

a guest
Jul 28th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. if (!IsPostback) {}
  2. else {}
  3.  
  4. if (shouldRedirect)
  5. {
  6. Response.Redirect("http://mysite.cool.site/stuff/awesome/webapp/display.aspx?IsRedirect=1");
  7. }
  8.  
  9. if (Request.QueryString["IsRedirect"]=="1")
  10. {
  11. Do whatever you need to do to account for the fact that you were redirected here.
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement