当前位置:Gxlcms > asp.net > c#网站WebConfig中域名引用示例介绍

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

时间:2021-07-01 10:21:17 帮助过:6人阅读

在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"%>" />

人气教程排行