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 / santosh
string url = "http://localhost:4351/WebSite8/Default5.aspx?" + TextBox1.Text;
Uri weburi = new Uri(url);
string query = weburi.Query;
string weburl = url.Substring(0, url.Length - query.Length);
Response.Redirect(weburl);
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How tooltip is set through code-behind in ASP.NET?
Which object is used to encapsulate the state of the client and the browser in ASP.NET?
Is it possible to develop a single web application using ASP.NET webforms and ASP.MVC?
What are the data controls available in asp.net?
Which class is used to send an email message from an ASP.NET Web page?
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,?
What is the size of Get method and how much data it can store?
Do cookies store passwords?
What is the significance of attaching a profile while creating a user?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
What's the use of formatters in .net?
What is page fragment caching?
Disable Mouse right click on web page in asp.net?
What is windows active directory authentication?
When we use cookie less session? Explain its working?