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
What is the request flow used for asp.net mvc framework? : asp.net mvc
They mostly asked difference between versions of technologies
Are xaml file compiled or built on runtime?
Can you change a master page dynamically at runtime? How?
What is the difference between cookie and session?
Define a static class?
How do you change the session time-out value?
Explain the page lifecycle of an asp.net mvc? : asp.net mvc
what are the events raised in asp.net page life cycle?in which stage view state can be loaded?
How to implement Authentication and Authorization?
What is asp.net file?
How you can add an event handler?
How many languages are supported by .NET at present time?
Explain the difference between web user control and web custom control?
What is the use of data set in asp.net?