2013-02-18 88 views
0

我在我的應用程序,它HeaderTemplate中有lable.Now我需要訪問從codebehind.How的拉布勒我能做到一個DataList ..訪問控件DataList控件HeaderTemplate中從代碼隱藏

CODE

 <asp:DataList ID="Dlitems" runat="server" RepeatDirection="Horizontal" RepeatColumns="4" 
         CellPadding="0" CellSpacing="15" OnItemCommand="Dlitems_ItemCommand"> 
         <HeaderTemplate> 
           <asp:Label ID="lblcat" runat="server" Text="" /> 
         </HeaderTemplate> 

注意:我需要訪問來自HeaderTemplate中的拉布勒lblcat ..

回答

0

連接OnItemDataBound事件與datali ST這樣

<asp:DataList ID="Dlitems" runat="server" RepeatDirection="Horizontal" RepeatColumns="4" 
CellPadding="0" CellSpacing="15" OnItemCommand="Dlitems_ItemCommand" 
OnItemDataBound="Dlitems_ItemDataBound"> 
... 

,並定義它像這樣

protected void Dlitems_ItemDataBound(Object sender, DataListItemEventArgs e) 
{ 
    if (e.Item.ItemType == ListItemType.Header) 
    { 
     Label lblCat = (Label)e.Item.FindControl("lblcat"); 
     lblCat.Text = "Changed!"; 

    }  
} 
+0

當這ItemDataBound事件將觸發..... – smith269 2013-02-18 10:04:58

+0

爲將綁定到列表中的每個項目,但它會去,如果條件只有一次因爲ItemType標題只有一次 – 2013-02-18 10:07:21

+0

你有沒有嘗試過任何事情? – 2013-02-18 10:11:13

0

上面的代碼是正確的,但是你將需要重新添加後的代碼,並正確地將其定義爲用戶沒有點擊任何按鈕或鏈接,所以我們不想顯示改變,除非用戶點擊鏈接或按鈕。在如下確實是:

protected void dlData_ItemDataBound(object sender, DataListItemEventArgs e) 
{ 
    try 
    { 
     if (Page.IsPostBack) 
     { 
      if (e.Item.ItemType == ListItemType.Header) 
      { 
       Label lblCat = (Label)e.Item.FindControl("lblcat"); 
       lblCat.Text = "Changed!"; 
      } 
     } 
    } 
    catch (Exception ex) 
    { 
     throw; 
    } 
    } 

快樂編程

相關問題