1. Explain how a web application works.
A web application resides in the server and serves the client’s requests over internet. The client
access the web page using browser from his machine. When a client makes a request, it receives
the result in the form of HTML which are interpreted and displayed by the browser.
A web application on the server side runs under the management of Microsoft Internet
Information Services (IIS). IIS passes the request received from client to the application. The
application returns the requested result in the form of HTML to IIS, which in turn, sends the result
to the client.
2. Explain the advantages of ASP.NET.
Following are the advantages of ASP.NET.
Web application exists in compiled form on the server so the execution speed is faster as
compared to the interpreted scripts.
ASP.NET makes development simpler and easier to maintain with an event-driven, server-side
programming model.
Being part of .Framework, it has access to all the features of .Net Framework.
Content and program logic are separated which reduces the inconveniences of program
maintenance.
ASP.NET makes for easy deployment. There is no need to register components because the
configuration information is built-in.
To develop program logic, a developer can choose to write their code in more than 25 .Net
languages including VB.Net, C#, JScript.Net etc.
Introduction of view state helps in maintaining state of the controls automatically between the
postbacks events.
ASP.NET offers built-in security features through windows authentication or other authentication
methods.
Integrated with ADO.NET.
Built-in caching features.
3. Explain the different parts that constitute ASP.NET application.
Content, program logic and configuration file constitute an ASP.NET application.
Content files
Content files include static text, images and can include elements from database.
Program logic
Program logic files exist as DLL file on the server that responds to the user actions.
Configuration file
Configuration file offers various settings that determine how the application runs on the server.
4. Describe the sequence of action takes place on the server when ASP.NET application
starts first time?
Following are the sequences:
IIS starts ASP.NET worker process>> worker process loads assembly in the memory>>IIS sends
the request to the assembly>>the assembly composes a response using program logic>> IIS
returns the response to the user in the form of HTML.
5. Explain the components of web form in ASP.NET
Server controls.
The server controls are Hypertext Markup Language (HTML) elements that include a
runat=server attribute. They provide automatic state management and server-side events and
respond to the user events by executing event handler on the server.
HTML controls.
These controls also respond to the user events but the events processing happen on the client
machine.
Data controls
Data controls allow to connect to the database, execute command and retrieve data from
database.
System components
System components provide access to system-level events that occur on the server.
6. Describe in brief .NET Framework and its components.
.NET Framework provides platform for developing windows and web software. ASP.NET is a part
of .Net framework and can access all features implemented within it that was formerly available
only through windows API. .NET Framework sits in between our application programs and
operating system.
The .Net Framework has two main components:
.Net Framework Class Library: It provides common types such as data types and object types
that can be shared by all .Net compliant language.
The Common language Runtime: It provides services like type safety, security, code execution,
thread management, interoperability services.
7. What is an Assembly? Explain its parts?
An assembly exists as a .DLL or .EXE that contains MSIL code that is executed by CLR.
An assembly contains interface and classes, it can also contain other resources like bitmaps, files
etc. It carries version details which are used by the CLR during execution. Two assemblies of the
same name but with different versions can run side-by-side enabling applications that depend on
a specific version to use assembly of that version. An assembly is the unit on which permissions
are granted. It can be private or global. A private assembly is used only by the application to
which it belongs, but the global assembly can be used by any application in the system.
The four parts of an assembly are:
Assembly Manifest - It contains name, version, culture, and information about referenced
assemblies.
Type metadata - It contains information about types defined in the assembly.
MSIL - MSIL code.
Resources - Files such as BMP or JPG file or any other files required by application.
8. Define Common Type System.
.Net allows developers to write program logic in at least 25 languages. The classes written in one
language can be used by other languages in .Net. This service of .Net is possible through CTS
which ensure the rules related to data types that all language must follow. It provides set of types
that are used by all .NET languages and ensures .NET language type compatibility.
9. Define Virtual folder.
It is the folder that contains web applications. The folder that has been published as virtual folder
by IIS can only contain web applications.
10. Describe the Events in the Life Cycle of a Web Application
A web application starts when a browser requests a page of the application first time. The request
is received by the IIS which then starts ASP.NET worker process (aspnet_wp.exe). The worker
process then allocates a process space to the assembly and loads it. An application_start event
occurs followed by Session_start. The request is then processed by the ASP.NET engine and
sends back response in the form of HTML. The user receives the response in the form of page.
The page can be submitted to the server for further processing. The page submitting triggers
postback event that causes the browser to send the page data, also called as view state to the
server. When server receives view state, it creates new instance of the web form. The data is
then restored from the view state to the control of the web form in Page_Init event.
The data in the control is then available in the Page_load event of the web form. The cached
event is then handled and finally the event that caused the postback is processed. The web form
is then destroyed. When the user stops using the application, Session_end event occurs and
session ends. The default session time is 20 minutes. The application ends when no user
accessing the application and this triggers Application_End event. Finally all the resources of the
application are reclaimed by the Garbage collector.
CATT Ltd VB programmers have always displayed excellent entrepreneurial skills and along with their real hands-on programming experience.Our VB developer's experience comprises mostly business Application Development, database application development, Software Development, Custom Web & Software Application Development.
ReplyDelete