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
Explain how can we inherit a static variable?
What does the orientation property do in a menu control?
What is Dynamic Web and discuss its usage with the help of real life examples?
What is cross page posting in asp net?
How many languages are supported by .NET at present time?
Differentiate between a hyperlink control and a linkbutton control.
Define repository pattern in asp.net mvc? : asp.net mvc
Is it true that a Web service must be written in .NET or not?
How would you implement inheritance using c#?
Do you know about caching with the datasource controls?
How use Xml data in ASP.net?
Explain in what order a destructors is called.
How many validators do ASP.NET have?
Explain the basic functionality of garbage collector?
What symbol specifies the beginning of a query string?