if (SessionConfig.Current.UserType != null)
Response.Redirect("~/Logout.aspx?UserType=" + SessionConfig.Current.UserType,false);
else
Response.Redirect("~/Default.aspx",false);
, где sessionconfig - это объявленная переменная сеанса.
public static SessionConfig Current
{
get
{
SessionConfig session =
(SessionConfig)HttpContext.Current.Session["__SessionConfig__"];
if (session == null)
{
session = new SessionConfig();
HttpContext.Current.Session["__SessionConfig__"] = session;
}
return session;
}
}
Просто вставьте это в событие нажатия кнопки и перейдите на домашнюю страницу в homepage.aspx.Это перенаправит страницу, и вы не сможете увидеть старую страницу