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.
Session State
Session State stores user-specific information on the server and shares that information across the pages within the site
Why would a session state be used over an application state?
Sometimes the data is too large or requires additional security.
Where is the session state stored by default? What are some other options for storage?
By default, session states are stored in memory on the server. The can be configured to store information in client-side cookies, on another state server or inside a Microsoft SQL Server database;
Does application state or session state consumer more server memory and why?
Session state uses more memory because it is per-user. Application state is shared among users.
Which might not work if a user has disabled cookies?
Session state won’t work if cookies are disabled. Application state works regardless;
You need to store state data that is accessible to any user who connects to your web application and ensure that it stays in memory. Which collection object should you use?
Application state
You need to store a value indicating whether a user has been authenticated for your site. This value needs to be available and checked in every user request . Which object should you use?
Session State
Your application is being deployed in a load-balanced web farm. The load balancer is not set up for user server affinity, Rather it routes requests to servers based on their load. Your application uses session state. How should you configure the session state mode attribute?
State server and SqlServer
Which page takes priority the master page or the content page?
The master page takes priority over the content page.
Is it possible to have multiple master pages?
Yes.