12

我有一个ListView这样的

<asp:ListView ID="ListView1" runat="server">
   <EmptyDataTemplate>
      <asp:Literal ID="Literal1" runat="server" text="some text"/>
   </EmptyDataTemplate>
   ...
</asp:ListView>

Page_Load()我有以下内容:

Literal x = (Literal)ListView1.FindControl("Literal1");
x.Text = "other text";

x返回null。我想更改Literal控件的文本,但我不知道该怎么做。

4

6 回答 6

21

我相信除非你在代码后面调用你的DataBind方法,否则永远不会尝试数据绑定。然后什么都不会渲染,甚至控件也不会被创建。ListViewListViewLiteral

在您的Page_Load活动中尝试类似:

protected void Page_Load(object sender, EventArgs e)
{
    if (!Page.IsPostBack)
    {
        //ListView1.DataSource = ...
        ListView1.DataBind();

        //if you know its empty empty data template is the first parent control
        // aka Controls[0]
        Control c = ListView1.Controls[0].FindControl("Literal1");
        if (c != null)
        {
            //this will atleast tell you  if the control exists or not
        }    
    }
}
于 2009-03-05T02:05:16.777 回答
4

您可以使用以下内容:

 protected void ListView1_ItemDataBound(object sender, ListViewItemEventArgs e)
        {
            if (e.Item.ItemType == ListViewItemType.EmptyItem)
            {
                 Control c = e.Item.FindControl("Literal1");
                if (c != null)
                {
                    //this will atleast tell you  if the control exists or not
                }
            }
        }
于 2012-05-04T13:07:41.203 回答
3

这不是你问的具体问题,但另一种做这种事情的方法是这样的:

<EmptyDataTemplate>
  <%= Foobar() %>
</EmptyDataTemplate>

Foobar 在您的页面代码隐藏文件中定义的位置

public partial class MyClass : System.Web.UI.Page
{
...
    public string Foobar()
    {
         return "whatever";
    }
}
于 2011-02-16T17:58:08.307 回答
3

另一种方法...

<asp:ListView ID="ListView1" runat="server">
   <EmptyDataTemplate>
      <asp:Literal ID="Literal1" runat="server" text="some text" OnInit="Literal1_Init" />
   </EmptyDataTemplate>
   ...
</asp:ListView>

在代码隐藏...

protected void Literal1_Init(object sender, EventArgs e)
{
    (sender as Literal).Text = "Some other text";
}
于 2013-09-17T14:45:25.897 回答
1
 Protected Sub ListView1_ItemDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.ListViewItemEventArgs) Handles ListView1.ItemDataBound
    Dim searchValue As String = Replace(Request.QueryString("s"), "", "'")
    Dim searchLiteral2 As Literal = CType(ListView1.FindControl("Literal2"), Literal)
    searchLiteral2.Text = "''" & searchValue & "''"
End Sub

...

于 2012-08-24T12:59:48.733 回答
1

回答 Broam 的问题“有没有办法在数据绑定方法中做到这一点?我宁愿不硬编码“控制 [0]”,因为那太草率了”

protected void ListView1_DataBound(object sender, EventArgs e)
{
    ListView mylist = ((ListView)sender);
    ListViewItem lvi = null;
    if (mylist.Controls.Count == 1)
        lvi = mylist.Controls[0] as ListViewItem;

    if (lvi == null || lvi.ItemType != ListViewItemType.EmptyItem)
        return;

    Literal literal1 = (Literal)lvi.FindControl("Literal1");
    if (literal1 != null)
        literal1.Text = "No items to display";
}

不幸的是,我还没有找到不使用 Controls[0] 的方法。

在通常的Item事件(ItemDataBound或ItemCreate)中,可以使用ListViewItemEventArgs的e.Item来获取ListViewItem。在 DataBound 事件中,只有一个通用的 EventArgs。

最重要的是,似乎 ((Control)sender).FindControl("Literal1") 也不起作用(从树顶部的列表视图中查找控件),因此使用 Controls[0] 。 FindControl(...)(从 listviewitem 中查找控件)。

于 2014-02-18T18:12:10.970 回答