asp.net技术内幕的书配源码

源代码在线查看: global.asax

软件大小: 1547 K
上传用户: gsxyndll
关键词: asp net 源码
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				
				Dim colRoles As HashTable
				
				Overrides Sub Init()
				  colRoles = New HashTable()
				
				  Dim arrJaneRoles As String() = _
				    { "Supervisors", "Engineers" }
				  colRoles( "yourdomain\jane" ) = arrJaneRoles
				  Dim arrGeorgeRoles As String() = _
				    { "Engineers" }
				  colRoles( "yourdomain\george" ) = arrGeorgeRoles
				End Sub
				
				
				Sub WindowsAuthentication_Authenticate( _
				  s As Object, _
				  e As WindowsAuthenticationEventArgs )
				
				  e.User = New GenericPrincipal( _
				    e.Identity, _
				    colRoles( e.Identity.Name.ToLower() ) )
				End Sub
				
				
							

相关资源