📄 web.config
字号:
<?xml version="1.0"?>
<!--
Note: As an alternative to hand editing this file you can use the
web admin tool to configure settings for your application. Use
the Website->Asp.Net Configuration option in Visual Studio.
A full list of settings and comments can be found in
machine.config.comments usually located in
\Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings/>
<!-- Un-comment this section to point to a local sql server instance instead of
the sql 2005 file-based database -->
<!--
<connectionStrings>
<clear/>
<add name="LocalSQLServer" connectionString="Server=.;Database=aspnetdb;trusted_connection=yes"/>
</connectionStrings>
-->
<system.web>
<pages theme="Wingtip" />
<roleManager enabled="true" />
<compilation debug="true"/>
<authorization>
<deny users="?"></deny>
</authorization>
<authentication mode="Forms" />
<webParts>
<!-- uncomment the following line (and comment out the line below that
to switch to the personalization provider -->
<!--<personalization defaultProvider="FileBasedPersonalizationProvider"> -->
<personalization>
<providers>
<add name="FileBasedPersonalizationProvider"
type="MsdnMag.Samples.FileBasedPersonalizationProvider" />
</providers>
<authorization>
<allow users="bob" verbs="enterSharedScope" />
</authorization>
</personalization>
</webParts>
</system.web>
</configuration>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -