首页 > 编程 > .NET > 正文

c#网站WebConfig中域名引用示例介绍

2020-01-17 23:26:52
字体:
来源:转载
供稿:网友
在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"%>" />
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表