Reputation: 23
I have a folder admin in my project. the main home is outside this folder. I want to redirect to the mainhome.aspx
in the logout button click event of a page which is in the admin folder.
what I did is :
Response.Redirect("mainhome.aspx");
but it is not redirecting to the mainhome.aspx
page.
Upvotes: 2
Views: 123
Reputation: 18127
You can write it like this:
Response.Redirect("~/mainhome.aspx");
Upvotes: 2
Reputation: 7244
Set the root level, / now its looking for mainhome.aspx
in your admin folder
Response.Redirect("/mainhome.aspx");
Upvotes: 1