let's say i have two privileges : Admin and Host and i have a default page.
after logging in : admin users can see everything but host users can't see few buttons in the page
so am i supposed to duplicate the default page? or is there a way to disable the buttons on redirection to the default page?
If Login1.Password = Session("pwd") Then
Response.Redirect("profile_test_1.aspx")
End If
note that I'm using web applications
Thank you :)