我有gridview的用户控件。
我已使 GridView 可见 =“假”。
当我单击一个按钮时,它应该显示出来。
这是我的代码,但我收到错误。
<script type="text/javascript">
function showGrid() {
alert("calling function");
document.getElementById("<%= GridView1.ClientID%>").visibility = 'visible';
}
</script>
<asp:Button ID="btnView" runat="server" OnClientClick="showGrid();" BackColor="Blue" BorderStyle="None" Font-Bold="true" ForeColor="White" Text="Show Grid" />
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" ClientIDMode="Static" **Visible="false"**
AllowSorting="True" AutoGenerateColumns="False" BackColor="White"
BorderColor="#DEDFDE" BorderStyle="None" BorderWidth="1px" CellPadding="4"
DataSourceID="SqlDataSource1" ForeColor="Black" GridLines="Vertical">