[转][ASP.net]后台页面刷新
Posted 秤心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[转][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
相应的 web.config
<!-- 通过 <authentication> 节可以配置 ASP.NET 使用的 安全身份验证模式, 以标识传入的用户。 --> <authentication mode="Forms"> <forms cookieless="UseCookies" name="LoginCookieName" loginUrl="~/WebMain.aspx"></forms> </authentication> <authorization> <!-- 禁用所有 --> <deny users="*"/> <!-- 允许所有 --> <allow users="*"/> </authorization>
更详细的文章:点此进入
以上是关于[转][ASP.net]后台页面刷新的主要内容,如果未能解决你的问题,请参考以下文章