What does the "EnableViewState" property do? Why would I
want it on or off?
Answer Posted / deepali
It allows to Store Value in viewstate and Persist the
values across postbacks
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
Disable browser cache for entire ASP.NET website?
What are the merits and demerits of viewstate?
What is asp.net and ado net?
How does http session work?
What is is post back property in asp net?
What is the use of ASP.NET routing?
What is view state and how it works in asp net?
How to send a DataReader as a parameter to a remote client ?
What is the difference between cookie and session?
What is application in asp net?
How do active server pages work?
How to set the pane area to transparent of a scrollPane component.?
Explain about asp.net state management?
a web application needs to be created to accept the product name and quantity of a toy from a customer. After the customer has entered the product name the application needs to display the discounted price of the product to the customer (company is offering 35% discount on all products). The application should allow the customer to select the product name from a list box. and also while i'm data binding to a label with custom data binding with some declarations : "The Discounted Price is "+((System.Convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)) - ((System.convert.todouble(lblprodprice.text)*(system.convert.todouble(txtqty.text)*0.35)). Where i need to give this declaration in asp.net 2.0.
How do I open an ashx file?