c#网站WebConfig中域名引用示例介绍
时间:2022-05-22 08:21:24|栏目:.NET代码|点击: 次
在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"%>" />
复制代码 代码如下:
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"%>" />
上一篇:设置ASP.NET页面不被缓存(客户端/服务器端取消缓存方法)
栏 目:.NET代码
下一篇:没有了
本文地址:http://www.codeinn.net/misctech/202583.html