I am trying to bind Panel.visible to be visible depending on matching database table field and querystring as:
<asp:Panel ID="Panel2" runat="server" Visible='<%# Eval("Mjr_Id") == Request.QueryString["Mjr_Id"] %>'> ... </asp:Panel>
But it failed, do you have idea about the correct binding format to do this?