asp.net – 在GridView问题中的ImageButton上的PopUpExtender

前端之家收集整理的这篇文章主要介绍了asp.net – 在GridView问题中的ImageButton上的PopUpExtender前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的asp.net页面上有GridView,该网格中的一列是ImageButton(TemplateField,ID =“imbReserve”).单击该按钮我想显示PopUp,但是当我把TargetControlId =“imbReserve”时,我收到错误消息“无法找到ID为’imbReserve’的控件”.如何实现这一点,点击Grid里面的按钮显示PopUp?

解决方法

看看这两篇文章,只是帮我解决了这个问题

第1条:A More Traditional approach

以下内容将从上述文章中解释

页码

  1. <asp:UpdatePanel ID="updatePanel" runat="server" UpdateMode="Conditional">
  2. <ContentTemplate>
  3. <asp:GridView ID="gvCustomers" runat="server" AutoGenerateColumns="false"
  4. Width="95%">
  5. <Columns>
  6. <asp:TemplateField >
  7. <ItemTemplate>
  8. <asp:Button ID="btnViewDetails" runat="server" Text="Details" OnClick="BtnViewDetails_Click" />
  9. </ItemTemplate>
  10. </asp:TemplateField>
  11. <asp:BoundField DataField="customerid" HeaderText="ID" />
  12. <asp:BoundField DataField="companyname" HeaderText="Company" />
  13. <asp:BoundField DataField="contactname" HeaderText="Name" />
  14. <asp:BoundField DataField="contacttitle" HeaderText="Title" />
  15. </Columns>
  16. </asp:GridView>
  17. </ContentTemplate>
  18. </asp:UpdatePanel>
  19.  
  20. <ajaxToolKit:ModalPopupExtender
  21. ID="mdlPopup" runat="server" TargetControlID="pnlPopup" PopupControlID="pnlPopup"
  22. CancelControlID="btnClose" BackgroundCssClass="modalBackground" />
  23. <asp:Panel ID="pnlPopup" runat="server" Width="500px" style="display:none">
  24. <asp:UpdatePanel ID="updpnlCustomerDetail" runat="server" UpdateMode="Conditional">
  25. <ContentTemplate>
  26. [Your Content Here]
  27. </ContentTemplate>
  28. </asp:UpdatePanel>
  29. <div align="right" style="width:95%">
  30. <asp:Button
  31. ID="btnSave" runat="server" Text="Save" />
  32. <asp:Button ID="btnClose" runat="server" Text="Close" Width="50px" />
  33. </div>
  34. </asp:Panel>

请注意,GridView包含在更新面板中,Modal Extender的目标控件ID与弹出控件ID相同.这是因为ModalPopUp Extender需要一个目标控件ID,我认为这个解决方案比使用隐藏按钮更好.

现在为代码背后:

  1. protected void BtnViewDetails_Click(object sender,EventArgs e)
  2. {
  3. // Do Anything you need to the contents of the update panel
  4.  
  5. // update the contents in the detail panel
  6. this.updpnlCustomerDetail.Update();
  7. // show the modal popup
  8. this.mdlPopup.Show();
  9. }

第2条:Uses Clientside Javascript

以下内容将从上述文章中解释

客户端Javascript

  1. <script type="text/javascript">
  2. // keeps track of the delete button for the row
  3. // that is going to be removed
  4. var _source;
  5. // keep track of the popup div
  6. var _popup;
  7.  
  8. function showConfirm(source){
  9. this._source = source;
  10. this._popup = $find('mdlPopup');
  11.  
  12. // find the confirm ModalPopup and show it
  13. this._popup.show();
  14. }
  15.  
  16. function okClick(){
  17. // find the confirm ModalPopup and hide it
  18. this._popup.hide();
  19. // use the cached button as the postback source
  20. __doPostBack(this._source.name,'');
  21. }
  22.  
  23. function cancelClick(){
  24. // find the confirm ModalPopup and hide it
  25. this._popup.hide();
  26. // clear the event source
  27. this._source = null;
  28. this._popup = null;
  29. }

页码

  1. <asp:GridView ID="gvToDoList" runat="server" AutoGenerateColumns="false" >
  2. <Columns>
  3. <asp:BoundField DataField="ID" HeaderText="ID" />
  4. <asp:BoundField DataField="Item" HeaderText="Description" />
  5. <asp:BoundField DataField="IsCompleted" HeaderText="Complete?" />
  6. <asp:TemplateField ControlStyle-Width="50px" HeaderStyle-Width="60px" >
  7. <ItemTemplate>
  8. <asp:Button ID="btnDelete" runat="server"
  9. OnClientClick="showConfirm(this); return false;"
  10. OnClick="BtnDelete_Click" Text="Delete" />
  11. </ItemTemplate>
  12. </asp:TemplateField>
  13. </Columns>
  14. </asp:GridView>
  15.  
  16. <ajaxToolKit:ModalPopupExtender BehaviorID="mdlPopup" runat="server"
  17. TargetControlID="div" PopupControlID="div"
  18. OkControlID="btnOk" OnOkScript="okClick();"
  19. CancelControlID="btnNo" OnCancelScript="cancelClick();"
  20. BackgroundCssClass="modalBackground" />
  21. <div id="div" runat="server" align="center" class="confirm" style="display:none">
  22. <img align="absmiddle" src="Img/warning.jpg" />Are you sure you want to delete this item?
  23. <asp:Button ID="btnOk" runat="server" Text="Yes" Width="50px" />
  24. <asp:Button ID="btnNo" runat="server" Text="No" Width="50px" />
  25. </div>

再次注意,Modal Pop Up Extender的目标控件ID与弹出控件ID相同.还要注意模板字段中按钮的OnClientClick属性,确保包含“return false;”.

在其后面的代码中需要使用onClick(或onCommand)事件处理程序来执行您需要执行的操作.

我成功地尝试了这两种方法.

希望这两个中的一个适合你.

猜你在找的asp.Net相关文章