web.config

来自「网上购物系统源代码加毕业设计论文」· CONFIG 代码 · 共 16 行

CONFIG
16
字号
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
	<system.web>
		<authentication mode="Forms">
			<forms name="eshopAdmin" loginUrl="Login.aspx" protection="All" path="/" />
		</authentication>
		<authorization>
			<deny users="?" />
		</authorization>
		<customErrors mode="On" defaultRedirect="Error.aspx"></customErrors>
	</system.web>
	<appSettings>
		<add key="ConnectionString" value="server=qs;database=eshop;uid=sa;pwd=" />
	</appSettings>
</configuration>

⌨️ 快捷键说明

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