ASP.Net Interview Questions and Answers
ASP.Net : What do you mean by In-Line code?

What do you mean by In-Line code?

In-Line code:- Here the code is directly embeded in the same file where the User Interface or presen....
Category: ASP.Net Date: 10/5/2010 8:53:19 PM
ASP.Net : Which of the two is better:- Strong Typing or Weak Typing?

Which of the two is better:- Strong Typing or Weak Typing?

Both Strong Typing and Weak Typing are good. Both are used depending on the requirement. In Strong ....
Category: ASP.Net Date: 10/5/2010 8:28:19 PM
ASP.Net : What do you mean by ViewState and what is its role?

What do you mean by ViewState and what is its role?

ViewState is a state which represents the state of the page that must persist across postback. Role....
Category: ASP.Net Date: 10/5/2010 6:17:19 PM
ASP.Net : Which data type is supported by RangeValidator control?

Which data type is supported by RangeValidator control?

Three datatypes are supported, viz. , String, Integer and Date.
Category: ASP.Net Date: 10/5/2010 2:20:19 PM
ASP.Net : Is it possible for a user browsing a website to read Web.config or Global.asax files?

Is it possible for a user browsing a website to read Web.config or Global.asax files?

No, he can't read these files as access to these files is not possible. This is because the section ....
Category: ASP.Net Date: 10/5/2010 11:44:20 AM
ASP.Net : To display the data in repeater control which template should be used?

To display the data in repeater control which template should be used?

Item Template should be used.
Category: ASP.Net Date: 10/5/2010 9:34:19 AM
ASP.Net : How does the RaiseBubbleEvent works?

How does the RaiseBubbleEvent works?

RaiseBubbleEvent implementation is done with the help of control , which cannot be overridden. The e....
Category: ASP.Net Date: 10/5/2010 12:50:20 AM
ASP.Net : Diffrentiate between src and code behind?

Diffrentiate between src and code behind?

src:- It is an attribute where we mention the name of the code-behind class to dynamically compile a....
Category: ASP.Net Date: 10/5/2010 12:26:19 AM
ASP.Net : The ViewState is available during which phase of the processing lifecycle of ASP.net?

The ViewState is available during which phase of the processing lifecycle of ASP.net?

It is available after the Init() method and before the Page_Load() method.
Category: ASP.Net Date: 10/4/2010 6:59:19 AM
ASP.Net : What can be done with a control having bubbled event?

What can be done with a control having bubbled event?

The control can perform the following three things if it has bubbled event:- 1. Nothing is done. In....
Category: ASP.Net Date: 10/4/2010 4:23:20 AM
ASP.Net : Whch classes are required to send a mail in asp.net and write code for it?

Whch classes are required to send a mail in asp.net and write code for it?

MailMessage and SmtpMail are the classes which will be required to send the mail. Code for this will....
Category: ASP.Net Date: 10/4/2010 2:13:19 AM
ASP.Net : Where should the validation occur ,on Server-Side or Client-Side and Why?

Where should the validation occur ,on Server-Side or Client-Side and Why?

It is better to have a validation check on client-side. This is because if the validations are check....
Category: ASP.Net Date: 10/4/2010 12:27:20 AM
ASP.Net : Code-Behind class consist of which type of code?

Code-Behind class consist of which type of code?

It contains Server-side code.
Category: ASP.Net Date: 10/3/2010 5:30:19 PM
ASP.Net : What is the role of the following in the page load process:- inetinfo.exe, aspnet_isapi.dll andaspnet_wp.exe .

What is the role of the following in the page load process:- inetinfo.exe, aspnet_isapi.dll andaspne....

inetinfo.exe is theMicrosoft IIS server running, handling ASP.NET requests among other things.When a....
Category: ASP.Net Date: 10/3/2010 5:05:19 PM
ASP.Net : Write the code to write cookie from a client's computer.

Write the code to write cookie from a client's computer.

The following code write a cookie to the user client. The cookie is "User" stores Username....
Category: ASP.Net Date: 10/3/2010 12:43:19 PM
2 3 4 5 6 7 8 
Recent Answers
How do you declare destructor in c#?
kumar answered: by implementing finalize and dispose method