2 What are the advantages of AppCmd in IIS7?
The advantages of AppCmd are – it provides server control without the need for graphical administration tools. Besides, it enables us to automate server management quickly. Also, we don’t need to write any code.
We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →
1 List the events in page life cycle.
1) Page_PreInit 2) Page_Init 3) Page_InitComplete 4) Page_PreLoad 5) Page_Load 6) Page_LoadComplete 7) Page_PreRender 8) Render
Top 10 Frequently Asked IIS Interview Questions
If you want to enrich your career and become a professional in IIS, then enroll in “IIS Training” – This course will help you to achieve excellence in this domain. |
2 What does Componentization mean in IIS?
Componentization meant the availability of web server features as standalone components. You can easily add, remove, or replace a component.
1 Which are the subsections of User mode?
The subsections of User mode are Web Admin Service, Virtual Directory, and Application Pool.
2 What are the event handlers that we can have in Global.asax file?
Application Events: Application_Start , Application_End, Application_AcquireRequestState, Application_AuthenticateRequest, Application_AuthorizeRequest, Application_BeginRequest, Application_Disposed, Application_EndRequest, Application_Error, Application_PostRequestHandlerExecute, Application_PreRequestHandlerExecute,Application_PreSendRequestContent, Application_PreSendRequestHeaders, Application_ReleaseRequestState, Application_ResolveRequestCache, Application_UpdateRequestCache
Session Events: Session_Start,Session_End
3 What are the advantages of Passport authentication?
All the websites can be accessed using single login credentials. So no need to remember login credentials for each web site.
Users can maintain his/ her information in a single location.
How can we apply Themes to an asp.net application?
We can specify the theme in web.config file. Below is the code example to apply theme:
1 What is the purpose of App pool recycling in IIS?
The purpose of App pool recycling is to free up the memory, which is consumed by the applications in an app pool.
2 What does a typically shared hosting environment consist of in IIS?
The typically shared hosting environment consists of the following:
What are Kernel Mode and User Mode in IIS?
The Kernel Mode and User Mode are the two main layers of IIS architecture.
3 What are the asp.net Security Controls?
: Provides a standard login capability that allows the users to enter their credentials
: Allows you to display the name of the logged-in user
: Displays whether the user is authenticated or not
: Provides various login views depending on the selected template
: email the users their lost passwordBest IIS Interview Questions and Answers
The protocols that IIS supports include HTTP/HTTPS, FTP, FTPS, SMTP, etc.
What is the Internet Information Service (IIS)?
IIS (Internet Information Service) is a web server from Microsoft, which is used to host websites and web applications on the web. It is the most used HTTP server in the world, which runs on Windows.
Explore – IBM WebSphere ESB Interview Questions |
Where the viewstate is stored after the page postback?
ViewState is stored in a hidden field on the page at client side. ViewState is transported to the client and back to the server, and is not stored on the server or any other external source.
4 What is the difference between an HtmlInputCheckBox control and an HtmlInputRadioButton control?
In HtmlInputCheckBoxcontrol, multiple item selection is possible whereas in HtmlInputRadioButton controls, we can select only single item from the group of items.