Search results for query: *

  • Users: kdevine
  • Content: Threads
  • Order by date
  1. K

    Making Labels visible at runtime

    I am trying to write an aspx page that can set some visibility of a control based on whether it has data in it or not. Here is a code snippet: Lbl = New Label Lbl = CType(Me.FindControl("lblGroup" & i), Label) If Not IsDBNull(dr("GroupName")) Then Lbl.Text = dr("GroupName") & ":"...
Back
Top