Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 does aspcompat="true" mean?

1074


How you can manage the state of application at the server side in ASP.NET?

1110


How does session work?

980


Explain the difference between authentication and authorization.

1110


What is Partial PostBack in ASP.NET?

1093


What are the HTML server controls in ASP.NET?

1128


Is oauth for authentication or authorization?

1080


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

1910


In the Repeater control which way you can edit?

1144


hi .net gurus. plz if any one has dumps on 70-631 and 70-541 on windows sharepoint services kindly mail me.

1688


What is the difference between the get method () and post method ()?

1035


Why is global asax is used?

1071


Explain code snippet to register exception filters from controller?

1042


Explain what is an abstract class?

1073


Where can I get information on cookies in asp.net?

1059