我注意到一些ASP.NET页面有<%$ sometext%>在他们中。有人可以在几句话中解释一下这个问题,还是指引一下语法参考?
解决方法
ConnectionString="<%$ ConnectionStrings:sqlconnection %>"
这是一篇很好的文章,解释了所有的内联表达式:
http://support.microsoft.com/kb/976112
The expression builder is used to set values of control properties based on the information that is contained in an application’s configuration or resource files. The following is the basic Syntax of the expression builder:
<%$ Expression Prefix: Expression Value %>
The dollar sign ($
) indicates to ASP.NET that the following expression is an expression builder. The expression prefix defines the kind of expression,such as AppSettings,ConnectionStrings,or Resources. Additionally,you can create and define your own expression builder. The expression value that follows the colon (:
) is what ASP.NET will actually use as the value of a certain property.