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 |
is it possible to set more than web.config file for an ASP.net APPLICATION?can it run?how is it possible
what is a .xap file? Explain with an example.
when i want to use asp.net configuration for creat users and roles i recived this message: There is a problem with your selected data store. This can be caused by an invalid server name or credentials, or by insufficient permission. It can also be caused by the role manager feature not being enabled. Click the button below to be redirected to a page where you can choose a new data store. The following message may help in diagnosing the problem: Unable to connect to SQL Server database. when i clicked the choose data source button that give me another message that is this: Use this page to configure how Web site management data such as membership is stored. You can use a single provider for all the management data for your site or you can specify a different provider for each feature. Your application is currently configured to use the provider: AspNetSqlProvider Select a single provider for all site management data Select a different provider for each feature (advanced) ------------------------- and this message was reapeted in other choose again. please help me if u know why i gave that message so i wont can creat my users and roles
What is personalization? What are the properties available in personalization?
What is web application virtual directory ?
i wand basic interview based questions in asp.net and vb.net
How do I force the dispose method to be called automatically, as clients can forget to call dispose method?
What tags do you need to add within the asp:datagrid tags to bind columns manually?
What is the other method, other than GET and POST, in ASP.NET?
How to rename a table using sql queries?
Is asp.net a programming language?
In asp.net 3.5 we can go one page to onther page without using statemanagment concept?