Programming Web Applications (MTA) Flashcards
What is the difference between a client and a server?
A server receives a request and responds to the client
What is the Web form model in the Microsoft .Net Framework?
Web forms is event driven pages written as a combination of HTML, Server controls and server code. It is broken down into the single-file model and the code-behind model.
How is data transmitted from one page to another?
cache, httppost, asp.net session state, querystring, cookies, httpcontext
How do clients and servers communicate?
Find answer
What are some examples of applications that can be developed with .NET?
Shopping cart
Name five intrinsic objects in .NET.
Request Response Application Server Session HttpContext
Request
Getting information from the User
Response
Sending information to the User
Application
Sharing information for the entire application
Server
Accessing Server resources
Session
Storing information about a User’s session
Name four ASP.NET server controls
User
Server
Web
Validation
View State
Stores user’s values in controls between page requests.
Control State
Stores information specific to a certain control.
Application State
A global storage mechanism to store data that needs to be accessible to all pages in a web application.