c#网站WebConfig中域名引用示例介绍
程序员文章站
2024-02-25 17:31:39
在webconfig中定义如下。 复制代码 代码如下: public class webconfig { public static string resourceserv...
在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"%>" />