如何从asp.net中的表单预览页面上的数据
我有一个包含四个字段的表单和一个包含复选框的清单, 现在我想,如果用户填写表单并选择复选框,然后按提交,它应该进入预览页面,其中所有四个字段都将以标签的形式显示,复选框仅以其值的形式显示,让我知道如何用更少的页面以最好的方式做到这一点。
谢谢
I have a form having four fields and a checklist having checkboxes,
now i want, if a user fills the form and select the checboxes, and press submit, it should go to a preview page, where all four fields would be shown in the form of labels and check boxes in the form of their values only, let me know how can i do it in a best manner with less pages.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在同一页面中使用标准回发来完成此操作。提交按钮的事件可以隐藏数据输入面板并显示一个面板,该面板将四个控件的值显示为预览。
You can do it in the same page with a standard postback. The event of the submit button can hide the data entry panel and show a panel which dispays the values of the four controls as a preview.