What is the difference between application object and
session object?
Answer Posted / linton lazar
Application object can store the value through out the
application.It using Application.lock(),Application.unlock
() for store the values.
Sessions helps to preserve data across successive accesses.
These can be done on a per user basis, via the use of
session objects. Session objects give us the power to
preserve user preferences and other user information when
browsing a web application
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
What is ispostback property?
What r the asp.net list controls and diff. Between them?
What is a web api? Which protocol is used in a web api?
What is a 1x1 pixel?
How do I create a web form?
How would ASP and ASP.NET applications run at the same time on the same server?
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.
what are the ihttphandler and ihttphandlerfactory interfaces ?
How can you use a custom controls in ASP.NET application?
what are the web form events available in asp.net?
Why viewstate is used in asp.net?
Explain the asp.net mvc folder conventions? : asp.net mvc
What are the ways to sending the data in ASP.NET page?
What are cookies in your browser?
How to sign out from forms authentication?