hi,
I have a gridview and in code behind I call a Stored procedure.

If there is no data I want to show a panel with label and hyperlink which is set to visible=false.
So in page load I call method to load the gridview BUT even if the Gridview has more than 1 row
the Panel is still showing when it should be only if Gridview=0 rows.
I include code below

code
                   if (!Page.IsPostBack)     {         string name = null;         if (!String.IsNullOrEmpty(Request.QueryString["Artist"].ToString().Trim()))             name = (Request.QueryString["Artist"]);
Go to the complete details ...