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 paging in context of Memory?
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?
what are the ihttphandler and ihttphandlerfactory interfaces ?
while developing webservices if i want some users to use my webservice only how can i give security to my webservice?
In order to bind the data from a data source to the Repeater control what property is set and what method must you call in your code,?
Explain global assembly cache.
How do you change the session time-out value?
Is asp.net easy to learn?
in which protocol ASP.NET WEB API Work?
Is asp.net different from asp? If yes, explain how?
How does windows service lifecycle differ from a .standard. Exe?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
List the types of authentication supported by asp.net?
What are demand-paging and pre-paging?
How would you get asp.net running in apache web servers?