Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在工作 asp.net 。
在我的应用程序中,我的 aspx 页面中有一个 div,其中有一个 gridview。现在我需要在按钮单击时将此 div 显示为弹出窗口。如何使用它。
代码:
<div id="gvdiv"> <asp:gridview id="gvsample" runat="server"/> </div>
注意:我需要将 div gvdiv显示为弹出窗口。
尝试这个:
c#代码:
gvdiv.datasource=yourdatasource; gvdiv.databind(); Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "showpopup();", true);
脚本:
function showpopup() { $("#popup").fadeIn('slow'); }
如果需要,可以在单击按钮上编写 c# 代码。