I have to send data throug querystring from one page to
another. But it should not be displayed in URL. How it is
possible?
Answers were Sorted based on User's Feedback
Answer / ravindra thakur
Using the server.transfer("page.aspx?id=1")
Is This Answer Correct ? | 10 Yes | 7 No |
Answer / 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 |
Describe how passport authentication works.
What is event bubbling?
What are the three parts of an http response?
Is post back in asp.net?
Tell me the code snippet to show how we can return 404 errors from HttpError?
What is the difference between custom web user control and a custom web server control?
What is server components?
What is the difference between Server.Transfer and Response.Redirect?
How to automatically get the latest version of all the asp.net solution items from source safe when opening the solution?
Explain the significance of routing? : asp.net mvc
What is the Global.asax used for?
What are client activated objects?