What is the difference between application and cache variables?
Answer Posted / rajnish kr bhatt
Application var is global to user however cache is specific
to user
| Is This Answer Correct ? | 3 Yes | 41 No |
Post New Answer View All Answers
How can we make sure that Web API returns JSON data only?
Are cookies stored on server or client?
What is active web pages?
Explain the concept of View Model in MVC?
What is a form tag?
What is the main differences between asp and asp.net?
What is role-based security in asp.net?
What are validator? How do you disable them?
What are the different authentication modes in asp.net?
Can we have multiple web config files for an asp.net application?
What are the Types of object in asp
What is the mvc framework?
How do cookies work?
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 you can add an event handler?