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
Which library is used by the testers and developers to develop automated tests and create testing tools?
When was asp.net released?
List the asp.net validation controls?
What is directive in asp net?
How is a session stored and maintained in asp.net?
To bind columns manually which tags do you need to add within the asp:datagrid ?
Do cookies store passwords?
What is in a session cookie?
What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?
What is a postback in asp net?
What is redirectpermanent in asp.net?
List the advantages and disadvantages of user control an custom control?
Explain the difference between webfarm and webgardens in .net?
How are sessions stored?
What r the asp.net list controls and diff. Between them?