|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
简单的说:.net只有微软一家在做的,微软也不允许别人跟他做相同的工具,所以他就把需要的工具全部封装在.net的平台上了;而net网页编程是公开了。这里删除不经常使用的,只留下节点
<?xmlversion="1.0"?>
<configurationxmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<configSections>
</configSections>
<appSettings>
<addkey="identifier"value="63B362AB3FE9FA8DEEB2C1E3889274A30"/>
</appSettings>
<!--毗连数据库字符串-->
<connectionStrings>
<addname="LocalSqlServer"connectionString="Server=.;database=XXX;uid=xx;pwd=xxxxxxxxxxxxx;"/>
</connectionStrings>
<microsoft.web>
<converters>
</converters>
<webServicesenableBrowserAccess="true"/>
<profileServiceenabled="true"setProperties="bulletin"getProperties="bulletin"/>
</microsoft.web>
<system.web>
<!--<anonymousIdentificationenabled="true"/>-->
<!--这里为profile信息-->
<profile>
<properties>
<addname="xxxx"defaultValue="暂无动静"/>
</properties>
</profile>
<!--以下为WebParts的设置-->
<webParts>
<personalization>
<providers>
<addconnectionStringName="LocalSqlServer"applicationName="/"name="AspNetSqlProvider"type="System.Web.UI.WebControls.WebParts.SqlPersonalizationProvider"/>
</providers>
<authorization>
<!--<allowroles="user"verbs="enterSharedScope"/>--><!--Share形式开启,不开启时可开户User形式-->
<denyroles="anonymous"verbs="modifyState"/>
<allowroles="aa,bb"verbs="modifyState"/>
</authorization>
</personalization>
</webParts>
<!--以下为MemberShip的设置-->
<membershipdefaultProvider="AspNetSqlProvider">
<providers>
<addconnectionStringName="LocalSqlServer"applicationName="/"description="somethingaboutMembership"requiresUniqueEmail="false"minRequiredPasswordLength="6"minRequiredNonalphanumericCharacters="0"enablePasswordRetrieval="false"enablePasswordReset="true"passwordFormat="Hashed"name="AspNetSqlProvider"type="System.Web.Security.SqlMembershipProvider"/>
</providers>
</membership>
<pagestheme="Silver"><!--页面主题设置-->
<controls>
</controls>
</pages>
<compilationdebug="true"><!--公布时设成false-->
<buildProviders>
</buildProviders>
<assemblies>
</assemblies>
</compilation>
<httpHandlers>
</httpHandlers>
<httpModules>
</httpModules>
<!--考证形式-->
<authenticationmode="Forms">
<formsname="xxx.xxx.net/com"loginUrl="Login.aspx/default.aspx"></forms>
</authentication>
<!--设置网页堕落信息与堕落显现页面-->
<customErrorsmode="RemoteOnly"defaultRedirect="ErrorPage.htm">
<errorstatusCode="403"redirect="NoAccess.htm"/><!--可本人增加毛病信息与毛病页面-->
<errorstatusCode="404"redirect="FileNotFound.htm"/>
</customErrors>
</system.web>
<!--以下节点感化一个页面的会见权限,可写多个,也可往失落第一句话,在一个文件夹放webconfig对全部文件夹起感化-->
<!--
<locationpath="xxx.aspx">
<system.web>
<authorization>
<allowusers="*"/>
</authorization>
</system.web>
</location>
-->
</configuration>
有个问题想请教你一下,呵呵:)你觉得将来学什么方向比较好,我真是想不出来,知道的太少了,麻烦了。 |
|