下面是“c#网站WebConfig中域名引用示例介绍”的完整攻略:
1. 简介
WebConfig是c#网站的配置文件,c#网站是一种基于.NET框架的网站开发语言。在WebConfig中,我们可以使用域名引用到其他网站或资源。
2. 域名引用的语法
在WebConfig中进行域名引用的语法格式如下:
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.5">
<assemblies>
<add assembly="System.Web.Abstractions,
Version=1.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</compilation>
</system.web>
</configuration>
在这个示例中,我们使用了<add>
标签来添加域名引用,其中assembly
属性表示需要引用的资源名称,Version
属性表示资源的版本号,Culture
属性表示资源的语言版本,PublicKeyToken
属性表示公钥。
3. 示例
以下是两个WebConfig中的域名引用示例:
示例1
<configuration>
<system.web>
<httpHandlers>
<add verb="*" path="*.dll"
type="BuildManagerSimpleHandler" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers accessPolicy="Script,Read">
<add name="BuildManagerSimpleHandler" verb="*" path="*.dll"
preCondition="integratedMode" type="System.Web.Compilation.BuildManagerSimpleHandler" />
</handlers>
</system.webServer>
</configuration>
在这个示例中,我们引用了BuildManagerSimpleHandler
处理程序。
示例2
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Web.Http.WebHost,
Version=4.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>
</assemblies>
</compilation>
<httpModules>
<add name="Session" type="System.Web.SessionState.SessionStateModule" />
<add name="AppModule" type="WebApp.AppModule, WebApp"/>
</httpModules>
</system.web>
</configuration>
在这个示例中,我们引用了System.Web.Http.WebHost
程序集,以及SessionStateModule
、AppModule
两个模块。
4. 总结
至此,我们介绍了在c#网站WebConfig中的域名引用示例。WebConfig是c#网站的配置文件,我们可以在其中使用域名引用到其他网站或资源。我们也给出了两个WebConfig中的域名引用示例,希望能为读者提供帮助。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:c#网站WebConfig中域名引用示例介绍 - Python技术站