Asp.Net Interview Question and Answers for Experienced

21. What are ASP.NET Web Forms?
 
  • Web Forms are the User Interface (UI) elements that give your Web applications their look and feel.
  • Web Forms are similar to Windows Forms in that they provide properties, methods and events for the controls that are placed onto them.
  • However, these UI elements render themselves in the appropriate markup language required by the request, e.g. HTML.
  • If you Microsoft Visual Studio .NET, you will also get the familiar drag and drop interface used to create your UI for Web application.
 
Your Name Your Email-ID
Your Answer
22. How do you debug an ASP.NET Web application?
  Attach the aspnet_wp.exe process to the DbgClr debugger.
 
Your Name Your Email-ID
Your Answer
23. How to Manage state in ASP.NET?
 
    We can manage the state in two ways
  • Clent based techniques are Viewstate, Query strings and Cookies.
  • Server based techniques are Application and Session.
 
Your Name Your Email-ID
Your Answer
24. What are the possible implementations of distributed applications in .NET?
 
  • .NET remoting and ASP.NET Web Services.
  • If we talk about the Framework Class Library, noteworthy classes are in system.runtime.remoting and system.web.services.
 
Your Name Your Email-ID
Your Answer
25. Does ASP.NET support server-side includes?
  Yes. Server side includes work the same in ASP.NET as they do in ASP.
 
Your Name Your Email-ID
Your Answer
12345678910 Page 5 of 10