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


Please Help Members By Posting Answers For Below Questions

What is paging in context of Memory?

893


Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?

2531


what are the ihttphandler and ihttphandlerfactory interfaces ?

749


while developing webservices if i want some users to use my webservice only how can i give security to my webservice?

1638


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,?

828


Explain global assembly cache.

789


How do you change the session time-out value?

803


Is asp.net easy to learn?

750


in which protocol ASP.NET WEB API Work?

840


Is asp.net different from asp? If yes, explain how?

740


How does windows service lifecycle differ from a .standard. Exe?

748


i want to implement grid view value in paypal site. so how to create this code in asp.net with C#

1637


List the types of authentication supported by asp.net?

744


What are demand-paging and pre-paging?

764


How would you get asp.net running in apache web servers?

750