我在 <link> 标签中绑定路径
<link rel="stylesheet" media="screen" href='<%= AbsRoot_Path%>UserAccountTemp/css/reset.css' />
但它呈现这样......
<link rel="stylesheet" media="screen" href="<%= ConfigurationManager.AppSettings["rootpath"].ToString() %>UserAccountTemp/css/reset.css" />
它正在工作 <script> 标签。
这背后的原因是什么,解决方案是什么?
更新
设置 AbsRoot_Path
在 web.config 中
<add key="rootpath" value="http://localhost:1259/WallProfile/"/>
并设置为 AbsRoot_Path
public string AbsRoot_Path = ConfigurationManager.AppSettings["rootpath"].ToString();