how to preview data on page from a form in 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
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.
精彩评论