我有一个绑定到ListView控件的SQLDataSource,但我想将绑定记录的一部分放入HTML TITLE属性中。这是我想要更改的代码隐藏文件,因此它可以使用Eval根据数据内容构建动态TITLE:
Public Partial Class zShowAd
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.Page.Title = " Dynamically set in ASPX page"
'how to use Eval here instead of the above constant ??
End Sub
End Class
这是相应的.aspx文件:
<%@ Page Language="vb" AutoEventWireup="false" MasterPageFile="~/zSEO.master"
CodeBehind="zShowAd.aspx.vb" Inherits="Zipeee.zShowAd" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div>
<asp:ListView ID="ShowAd" runat="server" DataSourceID="aPosting">
<LayoutTemplate>
<asp:PlaceHolder runat="server" ID="itemPlaceholder"></asp:PlaceHolder>
</LayoutTemplate>
<ItemTemplate>
<div>
<div id="wrapper">
<div id="header"></div>
<div id="main">
<div id="nav"> AdID: <%#Eval("AdID")%></div>
<div id="extras">Price: <%#Eval("Price")%></div>
<div id="content"> <%#Eval("AdDesc")%></div>
</div>
<div id="footer"></div>
</div>
</div>
</ItemTemplate>
</asp:ListView>
<asp:sqldatasource runat="server" id="aPosting"
ConnectionString="<%$ ConnectionStrings:ZIPeeeConnectionString2 %>"
SelectCommand="spGetAdByID" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:QueryStringParameter Name="AdId" QueryStringField="a" Type="String" />
</SelectParameters>
</asp:sqldatasource>
</div>
</asp:Content>
答案 0 :(得分:8)
您可以通过将以下内容放在ListView的ItemTemplate中来调用页面代码的方法(Sub):
<%# SetPageTitle(Eval("SomeProperty")) %>
然后在你的代码后面(抱歉它在C#中):
protected void SetPageTitle(object title)
{
this.Title = title.ToString();
}
或者,您也可以传递完整的数据项,而不只是一个属性:
<%# SetPageTitle(Container.DataItem) %>
更新(回答你的评论):
<%# ... %>
是一种所谓的数据绑定表达式。它只能在数据绑定控件(在您的示例中为ListView)内部工作,并且它始终与当前记录一起使用(通常在数据绑定控件中显示多个记录,如ListView)。
因此,当您使用<%# Eval("Price") %>
时,您将显示当前记录的“价格”列的值。如果你的查询会返回多个记录,那么这将对每个记录执行,并且在设置页面标题时(如上所示),页面的标题将是最后一条记录的值。
另一方面<%= ... %>
,只是一个普通的服务器端代码片段(不知道是否有特定的名称),它不知道数据绑定上下文(例如哪个是目前的记录。)
有关详细信息,请参阅以下问题:When should I use # and = in ASP.NET controls?