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 program to call the js function when the change is being made in the dropdown list made in asp.net mvc? : asp.net mvc
Define the term Scavenging in Caching?
What is the difference between Hash table and Array list?
What are the uses of list view control in Asp.net?
How use Xml data in ASP.net?
How do you handle server controls?
How many types of cookies are available in asp?
how can create login from create and written conde in asp.net
What are the different types of validation controls in asp.net?
What is postback request?
Demonstrate Render and PreRender?
What is the postback property in asp.net?
What are the differences between application object and session object?
How many types of triggers are there in update panel?
Explain what are the advantages of asp.net mvc framework? : asp.net mvc