I have to send data throug querystring from one page to
another. But it should not be displayed in URL. How it is
possible?
Answer Posted / ramesh
Write this code in default.aspx:
Response.Redirect("default2.aspx?Name=" + txtStudName.Text);
Write this code in default2.aspx:
if (Request.QueryString["Name"] != null)
{
TextBox1.Text = Request.QueryString
["Name"].ToString();
}
| Is This Answer Correct ? | 10 Yes | 13 No |
Post New Answer View All Answers
Why do you use the app_code folder in asp.net?
Explain one critical mapping?
what is meant by sitemapnode ?
Explain the differences between managed and unmanaged code?
How to implement Authentication and Authorization?
What is asp.net with mvc? : Asp.Net MVC
How to make paging concepts in datagrid in ASP.NET?
What does mean by a neutral culture?
We Only Know The Total Number Of Feet In The Farmyard. Write A Program that will compute the total number of rabbits and chickens in the farmyard. Assume number of feet in the farmyard are 40. how many rabbits and chickens are?
Define application state variable and session state variable?
How to sign out from forms authentication?
Which protocol is used to call web service?
What are the features that make asp.net more used framework? : asp.net mvc
How many types of Cookies are available in ASP.NET?
Who is using asp.net?