i have one page where all information like personal details. Now i want to redirect these all information to another page without any database connection and i want to do this by using query string so give me any tips or code fro do this .....
Create temporary variables at client side. store the user input values from the personal details page in these variables and call another page and pass these variavles as query string to another page.
Refer some good book on ASP or JSP (depending on the language that you are using) to study in detail about parameter passing.
You can send the person details by using querystring.
For this you have to pass these values via navigateurl property of hyperlink. In the next page you can use these values using Request.Querystring("----")