Hi All,
i have been looking for a couple of hours now and im getting quite frought with this.
I am trying to redirect a user when they first hit the Default.aspx page, the page determines which group the user is a role of and then redirects them to their parent folder and page ie admins etc however when i try and use
Private Sub Page_LoadComplete(sender As Object, e As System.EventArgs) Handles Me.LoadComplete
Response.Redirect("adm/adm_home.aspx", True)
End Sub
Response.Redirect("/adm/adm_home.aspx", True)
Response.Redirect("~/adm/adm_home.aspx", True)
http://localhost/Live/adm/adm/adm_home.aspx
as you can see the page either does load or from the URL above its keeps adding the directory name twice /ad
as you can see there ar ...
Go to the complete details ...