문제

I'm trying to hide the "Delete" linkbutton in the datagrid for the first row only, but would like to display "Delete" linkbutton button in rest of the rows. How can i achieve that, any help is much appreciated.

enter image description here

도움이 되었습니까?

해결책

Found the solution.

Private Sub dgRolloverInformation_ItemDataBound(ByVal sender As System.Object, ByVal e As System.Web.UI.WebControls.DataGridItemEventArgs) Handles dgRolloverInformation.ItemDataBound
            'Hide "Delete" button for the first row in the RolloverInformation Datagrid
            If (e.Item.ItemIndex = 0) Then
                Dim btnDelete As LinkButton = CType(e.Item.Cells(4).FindControl("lnkbtnDelete"), LinkButton)
                btnDelete.Visible = False
            End If
        End Sub
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top