ASP.Net Programming Question:
Download Questions PDF

What are ASP.NET Web Forms? How is this technology different than what is available though ASP?

ASP.Net Interview Question
ASP.Net Interview Question

Answer:

Web Forms are the heart and soul of ASP.NET. 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 use Microsoft Visual Studio .NET, you will also get the familiar drag-and-drop interface used to create your UI for your Web application.

Download ASP.Net Interview Questions And Answers PDF

Previous QuestionNext Question
Should validation (did the user enter a real date) occur server-side or client-side? Why?What is the difference between Server.Transfer and Response.Redirect? Why would I choose one over the other?