Reputation: 57
I wish to redirect a user to another page after logon.
The code below:
Response.Redirect("../agent/info.asp")
works fine - for Safari, IE, and Chrome. Not Firefox.
The code below:
Response.Redirect("agent/info.asp")
works in Firefox, but nothing else.
Upvotes: 1
Views: 10931
Reputation: 2757
If the page you are redirecting to isn't in the same directory, you're generally better off using either the full URL or the full virtual path like so (assuming /agent/
is in a directory below the root like what your example implies):
Response.Redirect("/agent/info.asp")
or
Response.Redirect("http://www.example.com/agent/info.asp")
More information and examples can be found at MSDN.
Upvotes: 4