0
我試圖隱藏第一行數據網格中的「刪除」鏈接按鈕,但希望在其餘行中顯示「刪除」鏈接按鈕。我如何實現這一點,任何幫助非常感謝。隱藏第一行Datagrid templatecolumn中的鏈接按鈕
我試圖隱藏第一行數據網格中的「刪除」鏈接按鈕,但希望在其餘行中顯示「刪除」鏈接按鈕。我如何實現這一點,任何幫助非常感謝。隱藏第一行Datagrid templatecolumn中的鏈接按鈕
找到了解決方案。
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