English 中文(简体)
ASP. NET 功能管理与窗口认证
原标题:ASP.NET role management with windows authentication

我正在利用伙伴关系进行内联网网站的工作。 NET,并想知道,在我的网站获得Windows认证时,我能发挥何种扶持作用。 我可以检查用户是否属于用户对象群体,因此,鉴于窗口验证是能够做到的,我为什么需要发挥作用?

最佳回答

经常出现的情况是,活跃名录的“分析员”小组中的人是而不是特定系统的管理人。 视窗网络上的“管理者”小组将向网络管理人指出,但你真的希望是专门针对您的申请的不同行政团体。 如果你有一个为财务部门处理一定数量的系统,那么你就不想让网络管理人员也担任财务系统的管理人员。

That s where the role manager comes in. The role manager allows you to continue to use Windows Authentication, but create your own roles, separate from your network, and assign a different set of users to that role. On your intranet for example, you might want managers to be able to edit pages, so you assign them to the "Page Editor" role.

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Transaction handling with TransactionScope

I am implementing Transaction using TransactionScope with the help this MSDN article http://msdn.microsoft.com/en-us/library/system.transactions.transactionscope.aspx I just want to confirm that is ...

System.Web.Mvc.Controller Initialize

i have the following base controller... public class BaseController : Controller { protected override void Initialize(System.Web.Routing.RequestContext requestContext) { if (...

Microsoft.Contracts namespace

For what it is necessary Microsoft.Contracts namespace in asp.net? I mean, in what cases I could write using Microsoft.Contracts;?

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签