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 is inproc mode in session?
Can you explain page lifecycle in net?
What is difference between session and viewstate?
What are directives in asp.net?
What is postback and autopostback in asp.net?
Which object encapsulates state or data of a user?
Explain the difference between sql invalidation and sql notification.
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
What is a 401 redirect?
What is the difference between web.config and machine.config in ASP.NET?
How do you implement sql caching in asp.net?
Describe a bubbled event and how it is used ?
What are the types of caching in asp.net?
How to bind all the binding controls in a page at once in ASP.NET?
Name the namespace which is used by ado.net?