gpt4 book ai didi

c# - 我需要采取哪些步骤来实现具有角色的表单例份验证?

转载 作者:太空宇宙 更新时间:2023-11-03 14:29:03 25 4
gpt4 key购买 nike

我环顾四周,找不到要在我的网站中实现表单例份验证所需采取的简明步骤。我正在使用 C# 3.5 和 SQL Server 后端。

我的数据库中有一个 User 表和一个 UserRole 表。

我的应用程序中有 5 个包含 aspx 页面的目录。

管理员
常见
用户角色 1
用户角色 2
公开

我想要 Admin、UserRole1 和 UserRole2 上基于角色的安全性。

我的 web.config 看起来像这样......

  <system.web>
<authentication mode="Forms">
<forms name=".Authentication" loginUrl="UI/Common/Login.aspx" protection="All" path="/" timeout="30" />
</authentication>
...
</sytem.web>

<location path="UI/Admin">
<system.web>
<authorization>
<allow roles="Admin"/>
<deny users="*"/>
</authorization>
</system.web>
</location>

<location path="UI/UserRole1">
<system.web>
<authorization>
<allow roles="UserRole1"/>
<deny users="*"/>
</authorization>
</system.web>
</location>

<location path="UI/UserRole2">
<system.web>
<authorization>
<allow roles="UserRole2"/>
<deny users="*"/>
</authorization>
</system.web>
</location>

我在我的 Login.aspx 页面中放置了一个登录控件,我的 Login.aspx.cs 当前看起来像这样。

protected void Login1_Authenticate(object sender, AuthenticateEventArgs e)
{
if ((from u in db.Users where u.UserName == Login1.UserName select u).Count() == 1)
{
User user = (from u in db.Users where u.UserName == Login1.UserName select u).First();
//custom Encryption class, returns true if password is correct
if (Encryption.VerifyHash(Login1.Password, user.Salt, user.Hash))
{
string myRole = (from ur in user.UserRoles where ur.UserRoleID == user.UserRoleID select ur.Role).First();
//???
}
else
{
e.Authenticated = false;
}
}
else
{
e.Authenticated = false;
}
}

Annnnd 我卡住了,我不知道如何告诉我的应用程序我的用户角色是什么。

请帮助我:)

谢谢!

编辑:

我将我的身份验证事件代码更改为

        string role = (from ur in user.UserRoles where ur.UserRoleID == user.UserRoleID select ur.Role).First();
if (!Roles.RoleExists(role))
Roles.CreateRole(role);
if (Roles.FindUsersInRole(role, user.UserName).Length == 0)
Roles.AddUserToRole(user.UserName, role);
e.Authenticated = true;
string returnUrl = Request.QueryString["ReturnUrl"];
if (returnUrl == null) returnUrl = "/";
Response.Redirect(returnUrl);

但是我总是被踢回登录屏幕。

按下登录后,Fiddler 捕获看起来像
302/Web/UI/Common/Login.aspx?ReturnUrl=%2fWeb%2fUI%2fAdmin%2fDefault.aspx
302/Web/UI/Admin/Default.aspx
200/Web/UI/Common/Login.aspx?ReturnUrl=%2fWeb%2fUI%2fAdmin%2fDefault.aspx

编辑 2:

我想我已启动并运行身份验证,但我随机收到连接套接字管道错误。

我的身份验证是这样的:

        FormsAuthentication.Initialize();
if (!Roles.RoleExists(role))
Roles.CreateRole(role);
if (Roles.FindUsersInRole(role, user.UserName).Length == 0)
Roles.AddUserToRole(user.UserName, role);
e.Authenticated = true;
FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1,
user.UserName,
DateTime.Now,
DateTime.Now.AddMinutes(30), // value of time out property
true, // Value of IsPersistent property
string.Empty,
FormsAuthentication.FormsCookiePath);
string encryptedTicket = FormsAuthentication.Encrypt(ticket);
HttpCookie authCookie = new HttpCookie(FormsAuthentication.FormsCookieName, encryptedTicket);
if (ticket.IsPersistent) authCookie.Expires = ticket.Expiration;
authCookie.Secure = false; //set to true when https is enabled
Response.Cookies.Add(authCookie);

FormsAuthentication.RedirectFromLoginPage(user.UserName, true);

最佳答案

您可以使用 Roles 类方法,如下所示:

Roles.AddUserToRole(string userName, string roleName);
Roles.AddUserToRoles(string userName, string[] roleNames);
Roles.AddUsersToRole(string[] userNames, string roleName);
Roles.AddUsersToRoles(string[] userNames, string[] roleNames;

确保您正在使用 System.Web.Security

关于c# - 我需要采取哪些步骤来实现具有角色的表单例份验证?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3095598/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com