web.config

来自「本系统是在asp版《在线文件管理器》的基础上设计制作」· CONFIG 代码 · 共 61 行

CONFIG
61
字号
<!-- Admin configuration -->

<configuration>
	
	<location path="ManageGalleries.aspx">
		<system.web>
			<authorization>
				<allow roles = "SystemAdministrator, GalleryAdministrator" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>
	
	<location path="ManageGalleryPermissions.aspx">
		<system.web>
			<authorization>
				<allow roles = "SystemAdministrator, GalleryAdministrator" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>
	
	<location path="GalleryDefaultPermissionAdmin.aspx">
		<system.web>
			<authorization>
				<allow roles = "SystemAdministrator, GalleryAdministrator" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>
	
	<location path="AdminGalleryPermissions.aspx">
		<system.web>
			<authorization>
				<allow roles = "SystemAdministrator, GalleryAdministrator" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>			
	
	<location path="ManageDefaultGalleryPermissions.aspx">
		<system.web>
			<authorization>
				<allow roles = "SystemAdministrator, GalleryAdministrator" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>	
	
	<location path="GalleryGroupAdmin.aspx">
		<system.web>
			<authorization>
				<allow roles = "SystemAdministrator, GalleryAdministrator" />
				<deny users="*" />
			</authorization>
		</system.web>
	</location>			
	
	
	
</configuration>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?