200+ Asp.Net Interview Questions - 2

Question: 6

What base class do all web forms inherit from?

System.Web.UI.Page

Question: 7

What does WSDL stand for?

Web services Description language.

Question: 8

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

Question: 9

What is the difference between user and server controls?

User controls are created by the developer to allow for the reuse of controls that need specific functionality, while the Server controls are built-in.

Question: 10

Explain the types of errors?

Syntax Error: These include misspelled or missing keywords, or other mistakes relating to the syntax of the language.

Runtime Error: These errors are caused by the code that appears correct to the compiler, but that cannot run with certain values.

Logic Error: These are errors in which a program that works correctly under some circumstances gives unexpected or unwanted results based on certain input values.

Related Questions