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
What are custom controls?
Which adapter should you use, if you want to get the data from an access database?
Explain the difference between Web Garden and Web Farm?
What is microsoft windows sharepoint services?
How does output caching work in ASP.NET?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
What is a Cookie? Where is it used in ASP.NET?
If 200 is for all successful operation then why do we have 201 response codes?
What’s the difference between asp.net web forms and asp.net mvc?
How many types of Cookies are available in ASP.NET?
How to create events for a control?
what is meant by sitemapnode ?
What is meant by server side scripting?
What is a ashx file?
Where is the view state data stored in asp net?