我的 asp.net 应用程序中有一个 ModalPopup 窗口,我想在单击 Listview 控件项时显示该窗口。
<div id="ModalPopup" style="visibility:hidden" runat="server">
<div style="position: absolute; width: 100%; height: 100%; z-index: 10002; background-color: Gray; filter: alpha(opacity=70); opacity: 0.7;">
</div>
<table style="position: absolute; width: 100%; height: 100%; z-index: 10003;">
<tr>
<td align="center" valign="middle">
<div style="color: Black; font-weight: bolder; background-color: White; padding: 15px; width: 200px;">
<asp:Image ID="Image4" runat="server" ImageUrl="~/Images/ajax-loader.gif" />...Processing....
</div>
</td>
</tr>
</table>
</div>
但是,在我的RadListView1_SelectedIndexChanged
事件中,我的代码是:ModalPopup.Attributes.Add("style", "visibility:visible");
但不显示模式弹出窗口。
选择 ListView 项目时如何显示它?