Navigation url problem?
Hi..
I have created a test website using Asp.net and c#. The problem is in the Navigation. If the user is in admin page, and if the user clicks on logout page(similarly all the other pages) , the next page is displayed, but its showing the admin.aspx in the url rather than the corressponding pages url. why is this happening? and how to correct it.
I have used the code in the click event as :
Response.Redirect("Loginpage.aspx",false);
i have also tried with the : Response.Redirect("Loginpage.aspx",true); option, but its not working.
please help.
|