FormsAuthentication チケットを作成して Cookie に保存する複数の MVC3 サイトがあります。
ログイン:
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, userName, DateTime.Now, DateTime.Now.AddMinutes(15), true, String.Empty);
string encTicket = FormsAuthentication.Encrypt(ticket);
HttpCookie faCookie = new HttpCookie(FormsAuthentication.FormsCookieName, encTicket);
Application_AuthenticateRequest:
HttpCookie authCookie = Request.Cookies[FormsAuthentication.FormsCookieName];
複数のサイトが同じ Cookie に保存している場合、これは問題を引き起こすのでしょうか? アプリごとに異なる Cookie 名を使用することに害はありますか、それとも別の推奨される方法はありますか?