Questions et réponses d'entretien les plus demandées et tests en ligne
Plateforme d'apprentissage pour la preparation aux entretiens, les tests en ligne, les tutoriels et la pratique en direct

Developpez vos competences grace a des parcours cibles, des tests blancs et un contenu pret pour l'entretien.

WithoutBook rassemble des questions d'entretien par sujet, des tests pratiques en ligne, des tutoriels et des guides de comparaison dans un espace d'apprentissage reactif.

Preparation a l'entretien

Tests blancs

Definir comme page d'accueil

Ajouter cette page aux favoris

S'abonner avec une adresse e-mail

ASP .NET Questions et reponses d'entretien

Question 1. Describe the role of inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe in the page loading process.

inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among
other things.When an ASP.NET request is received (usually a file with .aspx extension),
the ISAPI filter aspnet_isapi.dll takes care of it by passing the request tothe actual
worker process aspnet_wp.exe.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 2. Whats the difference between Response.Write() andResponse.Output.Write()?

Response.Output.Write() allows you to write formatted output.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 3. What methods are fired during the page load?

Init() - when the page is instantiated
Load() - when the page is loaded into server memory
PreRender() - the brief moment before the page is displayed to the user as HTML
Unload() - when page finishes loading.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 4. When during the page processing cycle is ViewState available?

After the Init() and before the Page_Load(), or OnLoad() for a control.

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Question 5. What namespace does the Web page belong in the .NET Framework class hierarchy?

System.Web.UI.Page

Est-ce utile ? Ajouter un commentaire Voir les commentaires
 

Les plus utiles selon les utilisateurs :

Copyright © 2026, WithoutBook.