我的 btnclick 方法不起作用,这里我给出了代码

发布于 2024-08-20 15:27:33 字数 1070 浏览 9 评论 0原文

如果将 Button 添加到 .net 中的面板中,则无法调用 Button 的方法,那么我可以做什么?

  • 我的代码

添加类别

 </asp:Panel>

 <asp:Label ID="LblMsg" runat="server"></asp:Label>
 <cc1:ModalPopupExtender ID="LnkBtnAddCategory_ModalPopupExtender" runat="server" 
                              TargetControlID="LnkBtnAddCategory"
                              PopupControlID ="ModelPanel1"
                              OkControlID="BtnOKModel"
                              OnOkScript="onOK()"
                              CancelControlID="BtnCancelModel"
                                DropShadow="true"
                                BackgroundCssClass="modalBackground"
                                >
                            </cc1:ModalPopupExtender>

Cant call method of Button if Button is added to panel in the .net so wt can i do?

  • my code

Add Category

 </asp:Panel>

 <asp:Label ID="LblMsg" runat="server"></asp:Label>
 <cc1:ModalPopupExtender ID="LnkBtnAddCategory_ModalPopupExtender" runat="server" 
                              TargetControlID="LnkBtnAddCategory"
                              PopupControlID ="ModelPanel1"
                              OkControlID="BtnOKModel"
                              OnOkScript="onOK()"
                              CancelControlID="BtnCancelModel"
                                DropShadow="true"
                                BackgroundCssClass="modalBackground"
                                >
                            </cc1:ModalPopupExtender>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乖不如嘢 2024-08-27 15:27:33

真正理解你的问题的根源或者你到底想要实现什么仍然是相当困难的。

OnOkScript 属性指向一个 JavaScript 函数,我想您理解正确,因为您在问题帖子中提到了 JavaScript。因此,要实现回发(而不是ajax),您可以尝试执行类似的操作,或者

function onOk() {            
   document.getElementById('<%=ButSave.ClientID%>').click();
   return true;
}

您必须异步执行此操作。在这种情况下,您有两种可能性

It is still quite difficult to really understand the origin of your problem or what exactly you'd like to achieve.

The OnOkScript property points to a JavaScript function which I suppose you understood correctly since you're mentioning JavaScript in your question post. So to achieve a postback (not ajax) you could try to do something like

function onOk() {            
   document.getElementById('<%=ButSave.ClientID%>').click();
   return true;
}

Alternatively you have to do it asynchronously. In that situation you have two possibilities

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文