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 are user controls?

561


Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?

1939


How to create multi language website in asp.net mvc? : Asp.Net MVC

490


What is the difference between localization and globalization?

551


Explain the difference between the web config and machine config.

619






What is Difference between Production Serves and Development Servers? And Suppose, m adding/deleting C# file in a project based on the Specific Requirement. These Files are Automatically updated in Production Servers? So Which tool is needed to do This One?

1498


Explain the difference between an exe and a dll?

523


How can we identify that the page is post back in asp net?

499


How may clustered index we can create in table?

557


Explain asp.net application life cycle?

538


What is form method?

489


What is view state and how it works in asp net?

539


What is the file extension of web service?

546


What is the mvc model?

571


What are ASP.NET Web Forms? How is this technology different than what is available though ASP?

918