Answer Posted / alb.shah
Layered application designs are extremely popular because
they increase application performance, scalability,
flexibility, code reuse. In the classic three tier design,
applications break down into three major areas of
functionality:
•The data layer manages the physical storage and retrieval
of data
•The business layer maintains business rules and logic
•The presentation layer houses the user interface and
related presentation code.
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
How many types of Cookies are available in ASP.NET?
Describe SOA and the tenets of it?
How can i explain my project during interview?many time i expalain my project but they did't accept? please explain me.
Disable browser cache for entire ASP.NET website?
is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?
What is the difference between Hash table and Array list?
What is the full form of asp.net?
What threading model used in asp and asp.net?
What is a windows service?
What is event in asp.net?
Explain about asp.net caching?
What is a Cookie? Where is it used in ASP.NET?
Write a code snippet to implement the indentation in json in web api.
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 can exception be handled with out the use of try catch?