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 |
How do you implement postback with a text box? What is postback and usestate?
Is it possible to create web application with both webforms and mvc?
How is it possible for .NET to support many languages?
Explain the difference between response.redirect vs server.transfer
How to prepare culture-specific formatting in .net.
Is data can be edited in the Repeater control?
What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?
Explain server-side scripting?
Can we make a class with class with same;suppose public class abc { public class abc { } }
while developing webservices if i want some users to use my webservice only how can i give security to my webservice?
Uses of CLR ?
2 Answers Mind Tree, PH Software, TCS,
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)