三种后台刷新页面的方法:
// 刷新方法一 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
更详细的文章:点此进入
时间: 2024-10-07 20:20:26