c# - Enter data in web form, output to a new page -


I have a simple & lt; Form & gt; , clicking on a simple button to enter user data: & lt; Input type = "submit" name = "cmd" value = "OK" & gt; . Currently this application returns a simple post, fills the form, and displays the results under the form.

Now users have to go to the second page results. Basically they want to change a variable and compare results to different tabs. My first proposal was to keep the post back and then push the results to a different tab using a target = "_ blank" , but they do not like the two-click: OK Button then hyperlink

Is it possible to send results of form inputs to any other page?

I am programming ASP.NET in C #.

You can do this by postbackurl property in C #. This way you help access your previous page controls and output on the next page. You can also do it by using hidden areas and posts or by getting the method. Both options are good and reliable

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -