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.

相关文章

### 创建一个gRPC服务项目(grpc服务端)和一个 webapi项目(...
一、SiganlR 使用的协议类型 1.websocket即时通讯协议 2.Ser...
.Net 6 WebApi 项目 在Linux系统上 打包成Docker镜像,发布为...
一、 PD简介PowerDesigner 是一个集所有现代建模技术于一身的...
一、存储过程 存储过程就像数据库中运行的方法(函数) 优点:...
一、Ueditor的下载 1、百度编辑器下载地址:http://ueditor....