asp .net 中的 Modelpopup 扩展器问题
我已成功添加要弹出的控件,例如许多复选框...现在在复选框选中事件上我想在同一弹出窗口中显示另一个复选框。我该怎么做,有人可以帮助我吗?
I have successfully added controls to pop up, like many check boxes ... now on check box checked event I want to show another check boxes on same popup. how can I do that plz can any one help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保 autopostback 为 true 并将它们包装在模式内的 updatepanel 中。现在您将能够在回发时显示/隐藏您想要的任何内容,而无需模式关闭。
Make sure autopostback is true and wrap them in an updatepanel inside of the modal. Now you will be able to show/hide whatever you want on postback without the modal closing.
您想仅在其他复选框的选中事件上显示复选框(隐藏的)吗?您可以将 javascript 函数附加到复选框的 onClick 事件,并且可以设置其他复选框的可见性。
如果你想在服务器端处理这个问题,你需要将 autopostback 设置为 true 并指定 OnCheckedChanged 事件。
并将模态弹出控件放在更新面板内。
Do you want to just display check boxes(that's hidden) on checked event of other checkbox? You can attach javascript function to onClick event of check box and you can set visibility of other check boxes.
If you want to handle that in server side, you need to set autopostback to true and specify OnCheckedChanged event.
And put the modal popup control inside the update panel.
步骤如下:
1- 将复选框的自动发布设置回 true
2-双击复选框和 checkbox1_OnCheckedChanged
Here are the steps:
1- Set autopost back for the checkbox to true
2- Double click on the checkbox and on the checkbox1_OnCheckedChanged