Hi all,
How can you show certain messages when the cell inside the GridView control does not contain any data? Your help is appreciated.
I do not know if I am on the right track and what I need to make the below code complete.
Protected Sub gvphldetail_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvphldetail.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
End If
End Sub
How can you show certain messages when the cell inside the GridView control does not contain any data? Your help is appreciated.
I do not know if I am on the right track and what I need to make the below code complete.
Protected Sub gvphldetail_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles gvphldetail.RowDataBound
If e.Row.RowType = DataControlRowType.DataRow Then
End If
End Sub