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 does aspcompat="true" mean?
How you can manage the state of application at the server side in ASP.NET?
How does session work?
Explain the difference between authentication and authorization.
What is Partial PostBack in ASP.NET?
What are the HTML server controls in ASP.NET?
Is oauth for authentication or authorization?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
In the Repeater control which way you can edit?
hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.
What is the difference between the get method () and post method ()?
Why is global asax is used?
Explain code snippet to register exception filters from controller?
Explain what is an abstract class?
Where can I get information on cookies in asp.net?