标签:bsp 控件 ted net text 访问 system 后台 orm
< % for(int i=0;i<10;i++) { Reaponse.Write(i.ToString()); } %>
<asp:Label ID="lblId" runat="server" Text=‘<%#Eval("title") %>‘ Visible="false"></asp:Label>
用来绑定后台的变量或方法且有返回值 的,但此时的变量名或方法的访问修饰符为protected或public
<%=name%> <%=getstr()%>
<%@ import namespace="system.data">
<asp:TextBox runat="server" ID="cc" Text="<%$ ConnectionStrings:pubs%>"></asp:TextBox> web.config <configuration> <system.web> <compilation debug="true" targetFramework="4.0" /> </system.web> <connectionStrings> <add name="pubs" connectionString="Server=.;database=pubs;uid=sa;pwd=" providerName="System.Data.SqlClient"/> </connectionStrings> </configuration>
这种方式是ASP.NET4.0中新加入的绑定方式,常用于MVC中,但普通webform中也可使用。功能其实就是对绑定的值进行一下编码,因此,一下两者是等同的:
<%= Server.HtmlEncode("<b>test</b>") %> <%: "<b>test</b>" %>;
标签:bsp 控件 ted net text 访问 system 后台 orm
原文地址:http://www.cnblogs.com/yuan-jun/p/6784815.html