string SessionID = Request.Cookies["ASP.NET_SessionId"].Value.ToString();怎样才能够不变化啊!!同这段代码有关系吗?? if (FormsAuthentication.GetRedirectUrl(UserID, false).ToLower().EndsWith("default.aspx")) 
{
FormsAuthentication.SetAuthCookie(UserID, false);
//弹出窗口
Server.Transfer("VerifySignIn.aspx");
//非弹出窗口
//Response.Redirect("../../SubModule/Index.aspx");
}
else 
{
FormsAuthentication.RedirectFromLoginPage(UserID, false);
}