欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2024-02-22 17:23:28
在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"%>" />