I have a gridview that I set to visible=false until the user presses the Search button. In my
VB code I have the statement:
Protected Sub BtnSearch_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSearch.Click
gvResults.Visible = True
End Sub
When I press the Search button, it does not show the gridview at all. I have a saved SQL Server Procedure that populates the gridview. When I go into 'Configure DataSource' and test my Proc with input data, it works so I am pretty sure it is returning data but why will it not display?
Thanks
Lisa