I would suggest the way StackOverflow, Microsoft, Facebook, Google Accounts does, and that is even more efficient because every website can lie on any different machines.
Assume, you have AuthSite <-- this the one site where you have to login, and has membership info.
And you have SiteA, SiteB, SiteC on different servers.
On login page of SiteA you have to setup a form post with a secrete on AuthSite.
If you had previously logged successfully on AuthSite, it will just redirect back to SiteA with Successful secrete in the form of hidden Form Post in browser, that you have to verify in SiteA.
This model is highly extensible and scalable. Because maintanence on long run is easy.
Code on LoginPage of SiteA,SiteB and SiteC ...
Login.aspx on SiteA SiteB and SiteC
private void Page_Load(object sender, EventArg e){
// simply redirect back to AuthSite...
// Change Site parameter accordingly
Response.Redirect("http://authsite/Login.aspx?Site=SiteA");
}
Login.aspx on AuthSite
// define one hidden field named "ReturnSite"
private void Page_Load(object sender, EventArg e){
if(IsPostBack)
return;
string site = Request.QueryString["Site"];
if(Request.User.IsAuthenticated){
string secrete = CreateSomeSecrete(site);
Response.Redirect("http://" + site +
"/AuthConfirm.aspx?Token=" + secrete +
"&User=" + Request.User.Identity.Name);
return;
}
ReturnSite.value = site;
// do usual login...
}
private void LoginButton_Click(object sender, EventArg e){
string secrete = CreateSomeSecrete(ReturnSite.value);
FormAuthentication.SetAuthCookie(username,true);
// you can retrive username later by calling
// Request.User.Identity.Name
Response.Redirect("http://" + ReturnSite.value +
"/AuthConfirm.aspx?Token=" + secrete + "&User=" + username);
}
AuthConfirm.aspx on SiteA SiteB and SiteC
private void Page_Load(object sender, EventArg e){
string secrete = Request.QueryString["Token"];
// Verify that secrete came only from AuthSite
if(VerifySecrete(secrete)){
// This sets autho cookie for Current Site
FormsAuthentication.SetAuthCookie(Request.QueryString["User"], true);
}
}
Now lets see different scenario...
Same User, First time login
- First User , John visiting SiteA (not yet logged in) gets redirected to AuthSite.
- AuthSite checks and finds out that user does not have auth cookie, so actual credentials are asked.
- AuthSite sets token on itself and passes secrete to AuthConfirm page on SiteA, SiteA verifies the token and sets auth cookie and lets user to visit secure pages.
Same User, First time on SiteB
- User John is successfully logged into SiteA using AuthSite, now tries to visit SiteB
- SiteB finds user is not logged in so it is directed to AuthSite
- AuthSite finds that user already has cookie for AuthSite website
- AuthSite redirects user back to SiteB with auth secrete
- SiteB verifies the screte and lets John continue to visit secure
pages.