Greetings, all. I’m working on a training project; I have a page for user input which I save to the database; now I need the submit button to bring up a static(?) form which only displays their input, with a link to go back and edit this input. I’m using C# and ASP.NET. Any ideas out there? The examples I found googling were semi-relevant, but I had a difficult time understanding, as I am ignorant to a near-criminal degree.
Share
Basically, you need to save the inputs into a session first. Not in db, because the user has not confirm on its value. Then Redirect to another page where you need to display the values from the session. Hope this helps.