If condition = True Then MyPanel.Visible = True Else Visible = False End Try
Once i changed to the below it worked like a charm.
If condition = True Then MyPanel.Visible = True Else MyPanel.Visible = False End Try
Hope this helps to someone at least
If condition = True Then MyPanel.Visible = True Else Visible = False End Try
Once i changed to the below it worked like a charm.
If condition = True Then MyPanel.Visible = True Else MyPanel.Visible = False End Try
Hope this helps to someone at least
This entry was posted on February 28, 2012, 1:29 pm and is filed under ASP.NET, Debugging, System.Net. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.