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
Can I stream live content/events?
What is master page in dtp?
How can you use a custom controls in ASP.NET application?
What is runat?
How we implement web farm and web garden concept in asp.net?
What is the part of url?
How would you enable impersonation in the web.config file?
Give me one example of Web API Routing?
What is ispostback method in asp.net? Why do we use that?
Where the cookie value is stored?
How you can access the values from the Repeater control in ASP.NET?
Why we use content place holder in asp.net?
Where is the view state data stored in asp net?
How can you send an email message from an asp.net web page?
What are the Types of state management techniques