Another redirection question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I am trying to setup a program where instead of the application starting with a login page and then being redirected to the start page after login, the application opens for all with several links, and if the user selects a specific link, then they go through the log in procedure. Not sure if anyone knows how to do this but am thinking it will require some modification to the config.web file
Thanks paul.
 
I have this working somewhat but need to figure out how to do the following
I have
start pag
link1--goes to another pag
link2--goes to login page-goes to default.aspx if username and password is in the web.config fil
need to ad
link3--goes to login page-then goes to another page, not default.aspx if username and password is in list
Not sure how it knows what page to go to after passing the login criteria as this is the code I am using
'if found, display the apps start pag
FormsAuthentication.RedirectFromLoginPage(txtUserName.Text, True)
 
Back
Top