Jump to content

Response.Redirect


d@rk_blu3

Recommended Posts

what is the difference of the 3 response.redirect?response.redirect("sample.aspx", true)response.redirect("sample.aspx")response.redirect("sample.aspx", false)

Link to comment
Share on other sites

As far as I know, Response.Redirect only has 1 parameter. So all of these do the exact same thing:Response.Redirect("test.asp")Response.Redirect("test.asp", true)Response.Redirect("test.asp", false)Response.Redirect("test.asp", "I", "really", "like", "baby", "goats")All of them do the same thing, the first parameter (the filename) is the only thing used.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...