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 Dictionary 的基本用法示例介绍
★ ASP.Net2.0 GridView 多列排序,显示排序图标,分页
★ Asp.ne response对象与request对象使用介绍
★ Convert.ToInt32与Int32.Parse区别及Int32.TryParse
下一篇:
如何禁止文本框的记忆功能方法集锦