[转][ASP.net]后台页面刷新

三种后台刷新页面的方法:

// 刷新方法一
Response.AddHeader("Refresh", "0");
// 刷新方法二
Response.Write("<script language=javascript>window.location.href=document.URL;</script>");
// 刷新方法三
Response.Redirect(Request.Url.ToString());

ASP.net Form 身份验证

// 添加身份
FormsAuthentication.SetAuthCookie(loginName, true);
// 注销
FormsAuthentication.SignOut();

前台获取登录信息

// 登录信息
<%= Context.User.Identity.Name %> // 是否登录
Request.IsAuthenticated

 更详细的文章:点此进入

你可能感兴趣的:([转][ASP.net]后台页面刷新)