在CS文件中心设置全局变量,例如:
public string test = ""然后在页面中,使用服务器标记调用即可,例如:
<%=test %>只有一种方式:<link href="../style/2/style.css" type="text/css" rel="stylesheet"/>
整行替换成:
<%=Response.Write(GetMyLinkFile())%>
然后在cs代码中实现
public string GetMyLinkFile()
{
string mylink="
<link href="../style/2/style.css" type="text/css" rel="stylesheet"/>"
//你自己去拼上面的代码.
return mylink
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)