手机
当前位置:查字典教程网 >编程开发 >asp.net教程 >c#网站WebConfig中域名引用示例介绍
c#网站WebConfig中域名引用示例介绍
摘要:在WebConfig中定义如下。复制代码代码如下:publicclassWebConfig{publicstaticstringResour...

在WebConfig中定义如下。

复制代码 代码如下:

public class WebConfig

{

public static string ResourceServer = @"http://www.xxx.com/"; }

在前台页面中这样调用

复制代码 代码如下:

<script src="<% =WebConfig.ResourceServer %>/js/jquery-ui-all-min-lastest.js"

type="text/javascript"></script>

<link rel="stylesheet" type="text/css" href="<%=WebConfig.ResourceServer +"/css/style.css"%>" />

【c#网站WebConfig中域名引用示例介绍】相关文章:

ASP.NET程序中常用代码汇总

Asp.net 5种页面转向方法

asp.net计算网站访问量常用代码

ASP.NET Dictionary 的基本用法示例介绍

ASP.NET中的Cache使用介绍

ASP.NET中Session和Cache的区别总结

ASP.NET与数据库相关技巧

ASP.Net2.0 GridView 多列排序,显示排序图标,分页

Asp.ne response对象与request对象使用介绍

Convert.ToInt32与Int32.Parse区别及Int32.TryParse

精品推荐
分类导航