1
在我的C#代碼,我使用了一個連接字符串是這樣的:困惑的SqlDataSource
connection = new SqlConnection(ConfigurationManager.AppSettings["myconnectionstring"])
工作正常。
現在我嘗試使用<asp:SqlDataSource
控制,但我似乎無法使用上述連接字符串中像這樣的控制:
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConfigurationManager.AppSettings["myconnectionstring"] %>"
SelectCommand="SELECT * from table1"></asp:SqlDataSource>
我得到一個錯誤說:
解析器錯誤消息:服務器標記格式不正確。
我在做什麼錯?
謝謝,它使用'AppSettings:myconnectionstring'工作。 – oshirowanen