what is n tier ?
3-Tier architecture generally contains UI or Presentation
Layer, Business Access Layer (BAL) or Business Logic Layer
and Data Access Layer (DAL).
Presentation Layer (UI)
Presentation layer cotains pages like .aspx or windows form
where data is presented to the user or input is taken from
the user.
Business Access Layer (BAL) or Business Logic Layer
BAL contains business logic, validations or calculations
related with the data, if needed. I will call it Business
Access Layer in my demo.
Data Access Layer (DAL)
DAL contains methods that helps business layer to connect
the data and perform required action, might be returning
data or manipulating data (insert, update, delete etc).
| Is This Answer Correct ? | 0 Yes | 2 No |
What is Response object? How is it related to ASP's Response object?
When does the application OnEnd event handler fire? A. After every request for an application document, since web servers are stateless servers. B. As soon as there are no open connections to any application document. C. When the web server is stopped in an orderly fashion. D. Twenty minutes after the last request for a document in the application. E. When there are no application requests for the amount of time defined by the SessionTimeout variable.
What is n-tier system?
What purpose is served by the Application.Lock method? A. It locks the Application object, preventing other clients from altering any values in the Contents collection. B. It locks the application, preventing the server from responding to any requests for application documents. C. It locks the application, preventing non-SSL requests from being processed. D. It locks the Application object, preventing other clients from reading any values in the Content collection. E. It locks other clients from reading the Contents collection.
What type of code is found in a code-behind class?
What is the full name of asp in vb net?
Which is better asp or php?
What are the asp components?
Explain the post and get method?
What is Extranet?
How do in-process communication work in the common language runtime?
Explain how to handle error in asp?