asp.net <%$...%>语法

前端之家收集整理的这篇文章主要介绍了asp.net <%$...%>语法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试从Java到.NET的切换。

我注意到一些ASP.NET页面有<%$ sometext%>在他们中。有人可以在几句话中解释一下这个问题,还是指引一下语法参考?

解决方法

它是表达式构建器语法,它通常用于访问web.config中的设置。以下是使用表达式构建器语法获取连接字符串的示例:
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.

原文链接:https://www.f2er.com/aspnet/253768.html

猜你在找的asp.Net相关文章