need help.
-
here's the situation: i have a login page with a textbox for User ID, and another textbox for password. i have a button named "Login".. what i want this login button to do is, when the user is the administrator, when he/she key in the id and password, and click Login, i want the page to bring him/her to pages for administrator. when the user is the Guest, the page should bring him/her to pages for guest. may i know how to code this? thanks alot..:-D -DarkangeL-
-
here's the situation: i have a login page with a textbox for User ID, and another textbox for password. i have a button named "Login".. what i want this login button to do is, when the user is the administrator, when he/she key in the id and password, and click Login, i want the page to bring him/her to pages for administrator. when the user is the Guest, the page should bring him/her to pages for guest. may i know how to code this? thanks alot..:-D -DarkangeL-
work using authentication and authorization in ur web.config file... create a folder via app and add all the admin pages in there add a web.config file in tht folder to provide necessary authentication and authorization for all the pages in that folder... enter this code in the authentication tag
and add the users to be allowed in the authorization tag... sathy
-
work using authentication and authorization in ur web.config file... create a folder via app and add all the admin pages in there add a web.config file in tht folder to provide necessary authentication and authorization for all the pages in that folder... enter this code in the authentication tag
and add the users to be allowed in the authorization tag... sathy
-
here's the situation: i have a login page with a textbox for User ID, and another textbox for password. i have a button named "Login".. what i want this login button to do is, when the user is the administrator, when he/she key in the id and password, and click Login, i want the page to bring him/her to pages for administrator. when the user is the Guest, the page should bring him/her to pages for guest. may i know how to code this? thanks alot..:-D -DarkangeL-