私はasp.netで次のように役割を作成しました:
<configuration>
<CustomUsersSection>
<Roles>
<add RoleName="Administrator"/>
</Roles>
<Users>
<add UserName="admin" Password="password"
Email="abot@home" Role="Administrator"/>
</Users>
</CustomUsersSection>
</configuration>
ここで、テーブルに追加されたすべての管理者を、sql-server
上で定義したロールに追加したいと考えています。ご協力ありがとうございます。
My Admin table structure is as follows:
AdminId
AdminName
EmailAddress
...