Click to See Complete Forum and Search --> : how to do automatic login_ASP.NET


tejalm
March 23rd, 2006, 08:42 AM
Hi,
How to redirect from any site’s login form to that site’s particular page and how to pass login name and password as hidden...
And for that have to use login name's field name and password’s field name equals field name given in login form of any site....??? How to do this..
Give example of how to do for Yahoo..
Thanks in advance
Hurry plz....

HairyMonkeyMan
March 23rd, 2006, 08:54 AM
When the user logs in (for the first time) save a cookie onto their computer with their username, and encrypted password. Then when a user goes to your site... first thing you do is look for the cookie, and if it is not found, redirect to the login page.

Oversimplified, but hope it helps ;)