在Gridview Rowdatabound事件中查找ButtonField

时间:2014-08-21 10:40:31

标签: c# vb.net gridview

这是我的内联代码:

<asp:GridView ID="GrdVacation" runat="server" DataKeyNames="ID" AutoGenerateColumns="False">
  <Columns>

   <asp:TemplateField HeaderText="S.No">
               <HeaderTemplate>
               Sno</HeaderTemplate>
               <ItemTemplate>
               <%#Container.DataItemIndex + 1%>
               </ItemTemplateField>
   </asp:TemplateField>
   <asp:BoundField HeaderText="Badge No" DataField="EmpBadge" />
   <asp:BoundField HeaderText="Last Vacation Date" DataField="LastVacDate" DataFormatString="{0:dd-MMM-yyyy}" />
   <asp:BoundField HeaderText="Vacation Expiry Date" DataField="VacValidity" DataFormatString="{0:dd-MMM-yyyy}" />
   <asp:BoundField HeaderText="Vacation Start Date" DataField="VacStartDate" DataFormatString="{0:dd-MMM-yyyy}" />
   <asp:BoundField HeaderText="Vacation End Date" DataField="VacEndDate" DataFormatString="{0:dd-MMM-yyyy}" />
   <asp:BoundField HeaderText="13 Salary Request" DataField="E13SalRequest" />
   <asp:ButtonField ButtonType="Image" CommandName="select" HeaderText="Edit" ImageUrl="~/images/Edit.png"></asp:ButtonField>

</Columns>
</asp:GridView>

我准备在GridView RowDataBound 事件中的某些条件下更改ButtonFiled的图像URL。

我迄今为止尝试过的守则,

   Protected Sub GrdVacation_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GrdVacation.RowDataBound

    If (e.Row.RowType = DataControlRowType.DataRow) Then
    Dim NM = CType(e.Row.Cells(0).Controls(7), ImageButton)

     if(true) Then
        NM.ImageURL="somepath"
     End If

由于指定的参数超出了有效值的范围,我得到了异常。 请告诉我出了什么问题。

1 个答案:

答案 0 :(得分:1)

更改

Dim NM = CType(e.Row.Cells(0).Controls(7), ImageButton)

Dim NM = CType(e.Row.Cells(7).Controls(0), ImageButton)

像这样:

Protected Sub GrdVacation_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles GrdVacation.RowDataBound

    If (e.Row.RowType = DataControlRowType.DataRow) Then
    //// Dim NM = CType(e.Row.Cells(0).Controls(7), ImageButton)
    Dim NM = CType(e.Row.Cells(7).Controls(0), ImageButton)


     if(true) Then
        NM.ImageURL="somepath"
     End If