我在<鏈路捆綁這樣的路徑>標籤問題在表達標籤綁定字符串變量
<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" />
,它是工作<腳本>標籤。
這背後的原因是什麼,什麼是解決方案?
UPDATE
設置AbsRoot_Path
在web.config中
<add key="rootpath" value="http://localhost:1259/WallProfile/"/>
,並設置爲AbsRoot_Path
public string AbsRoot_Path = ConfigurationManager.AppSettings["rootpath"].ToString();
設置AbsRoot_Path的代碼不正確。 – 2011-04-09 05:31:34
怎麼樣?你能解釋一下嗎? – 2011-04-09 06:02:33
顯示設置AbsRoot_Path的代碼。我敢打賭,它有一些錯位的報價。 – 2011-04-09 06:07:34