hi,
there, I am coming up with a registration form. I want to know how to come up with a readonly form.

Firstly, the user has to register themselves on this form, then once the user has pressed the submit button, the user will be sent to the next page, where, the data that was entered before will be presented for the user to see if there is any adjusting needed in the information entered. Please help as i am not sure how to come up with this page

Recommended Answers

All 5 Replies

when the user clicks the Submit you need to transfer the information string that the user just created,

then in the next page you request string user have just made

I can't understand the phrase 'then in the next page you request string user have just made '. what should i actually do? please assist me.

on the next page user...Querystring.....

string first_name = Request.QueryString["First_Name"].toSting();

TextBoxFirst.Text = first_name.toString();

hope it helps..

I can understand this, but am i suppose to add it freely under a button code or something?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.