表单验证问题

发布于 2024-08-16 08:14:26 字数 110 浏览 4 评论 0原文

我使用的是 VSTS 2008 + C# + .Net 3.5 + ASP.Net + IIS 7.0。我正在实施表单身份验证。

我想知道在表单身份验证中,如何检查用户是否已经通过身份验证?

I am using VSTS 2008 + C# + .Net 3.5 + ASP.Net + IIS 7.0. And I am implementing Forms authentication.

I want to know in Forms authentication, how to check whether a user is already authenticated or not?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏末的微笑 2024-08-23 08:14:26

您可以使用 HttpContext.Current.User.Identity.IsAuthenticated 来检查它们是否经过身份验证。例如

if(User.Identity.IsAuthenticated)
{
Response.Write("Logged in already");
}
else
{
Response.Write("Please log in");
}

You can use HttpContext.Current.User.Identity.IsAuthenticated to check whether they're authenticated. For example

if(User.Identity.IsAuthenticated)
{
Response.Write("Logged in already");
}
else
{
Response.Write("Please log in");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文