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
List all templates of the repeater control.
What is the significance of ASP.NET routing?
Who creates jsessionid?
What is meant by ispostback in asp net?
If you want to write your own dot net language, what steps you will you take care?
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
What is the difference between user control and custom control?
What is custom events?
How to add DateTime Control in normal DataGrid Server Control?
9. Why should we hire you over the others waiting to be interviewed?
Can a master page have more than one contentplaceholder?
Can the unique key be null?
Explain about asp.net state management?
What is asp.net? How is it different from asp?
Is there any alternative to avoid name collisions other then Namespaces?