3

我将我的 DataRepeater 控件绑定到一个有很多列的表。我只想显示其中的一个子集,具体取决于填充的内容。

我应该如何/在哪里进行数据中继器中的常规测试?这是我的项目模板中的代码:

<% if (0= (DataBinder.Eval(Container.DataItem, "first").ToString().Length))
{
   i++;
}
    %>

我得到的错误是:CS0103:当前上下文中不存在名称“容器”

4

1 回答 1

5

你应该没问题:

<% if (0 == (Eval("first").ToString().Length))
{
   i++;
}
%>

但是根据您想要做什么,我可能会编写一个函数来处理数据的绑定,以保持显示和业务逻辑之间的分离。

例如

在你的 aspx 中:

<asp:Repeater id="myRepeater" runat="server" onDataItemBound="FillInRepeater">
<ItemTemplate>
<div class="contactLarge">
    <div style="background-color:#C5CED8;clear:both"><asp:Label runat="server" ID="title"></asp:Label>
    .
    .
    .
</div>
</ItemTemplate>
<AlternatingItemTemplate>
</AlternatingItemTemplate>
</asp:Repeater>

在您的代码隐藏中:

protected void FillInRepeater(object sender, RepeaterItemEventArgs e)
{
  if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem)
  {
    //in here you bind to your repeater labels and stuff then do all that sorta logic.
    //Grab Primary Data
    string titleText = DataBinder.Eval(e.Item.DataItem, "title").ToString();
    string somethingElseText = DataBinder.Eval(e.Item.DataItem, "somethingElse").ToString();
    string maybeSeeMaybeDontText = DataBinder.Eval(e.Item.DataItem, "maybeSeeMaybeDont").ToString();

    //Find the controls and populate them according the to row
    Label titleLabel = (Label)e.Item.FindControl("title");
    Label somethingElseLabel = (Label)e.Item.FindControl("somethingElse");
    Label maybeSeeMaybeDontLabel = (Label)e.Item.FindControl("maybeSeeMaybeDont");

    // display the fields you want to
    titleLabel.Text = titleText;
    somethingElseLabel.Text = somethingElseText;

    // here is where you could do some of your conditional logic
    if (titleText.Length != 0 && somethingElseText.Length != 0)
    {
        maybeSeeMaybeDontLabel.Text = maybeSeeMaybeDontText;
    }
  }
}

就个人而言,我更喜欢以这种方式做事,而不是在 ASP 中做任何逻辑。我知道这对某些人来说可能看起来有点傻,但我喜欢尽可能将我的业务逻辑与我的显示逻辑分开。

于 2010-08-12T03:38:32.283 回答