Recent Answers
What is difference between string and stringbuilder?
Vinit Kumar answered: string -the object of this class are immutable i.e. we can not change any character that is c....
How Just in Time Compiler Works?
Johndecruse answered: When you execute the program, i.e. the intermediate code, the Just-In-Time (JIT) compiler com....
If I have an external aspx page? How do u integrate with existing sharepoint site? I want to publish it over t....
Satyen Kasturi answered: what you want is to use Application pages. These are located in Layouts directory. Within ....
where are the different file to content query webpart? To design a page?
uday answered: content query webpart displays a dynamic view of sites ,pages
have worked in BDC?
Mike answered: BDC stands for Business Data Catalog. It is a new feature introduced in Microsoft Office SharePoint ....
How do I connect database and infopath in sharepoint?
jiten_keswani answered: \\.\pipe\mssql$microsoft## ssee\sql\query (for Sharepoint 2007) or \\.\pipe\mssql$sharepoin....
What's new in .Net Framework 3.0?
Daniel answered: Visual Studio 2008 and the .NET Framework 3.5 enable developers to rapidly create connected applic....
What's new in .Net Framework 3.0?
resumedocket answered: WPF provides new features for making more interesting, effective, and dynamic user interface....
What is "out" keyword in C#?
Johndecruse answered: “out Keyword” in C#.out keyword is used for passing a variable for output purpose. It has sam....
What is a SharePoint Site Collection and how can we create it?
resumedocket answered: To create a SharePoint site, you must be a member of a site group that has the Create Subsit....
123456789
ASP.Net Interview Questions and Answers
ASP.Net : How can we Restart an Application Pool?

How can we Restart an Application Pool?

We can restart a specific Application Pool by using the IIS Manager GUI or using cscript.exe in the ....
Category: ASP.Net Date: 1/3/2010 11:39:12 AM
ASP.Net : Explain various Validation Controls available in ASP.Net?

Explain various Validation Controls available in ASP.Net?

There are five types of Validation Controls available in ASP.Net: 1) RequiredField Validation contr....
Category: ASP.Net Date: 11/30/2009 3:28:15 PM
ASP.Net : How to set default button on a ASP.Net Web Form?

How to set default button on a ASP.Net Web Form?

In ASP.Net 2.0, we can set a default button on a page so that when the user presses the Enter key th....
Category: ASP.Net Date: 11/30/2009 5:01:16 AM
ASP.Net : How to set the cursor focus on a control in ASP.Net?

How to set the cursor focus on a control in ASP.Net?

In ASP.Net 2.0, the cursor focus on a control can be set by using the Focus() method. For example: ....
Category: ASP.Net Date: 11/30/2009 4:53:44 AM
ASP.Net : Explain the various types of ASP.Net Caching?

Explain the various types of ASP.Net Caching?

Basically, ASP.Net Caching is of two types: 1) Output Caching: The rendered html page is stored int....
Category: ASP.Net Date: 11/6/2009 7:48:31 AM
ASP.Net : Explain ASP.Net Caching?

Explain ASP.Net Caching?

ASP.Net Caching is a mechanism to store the frequently used data into the server memory which can be....
Category: ASP.Net Date: 11/6/2009 7:44:44 AM
ASP.Net : Which properties on a ComboBox do you set, prior to calling the DataBind method, to display data in the ComboBox?

Which properties on a ComboBox do you set, prior to calling the DataBind method, to display data in ....

Set the DataTextField property with a column name and DataSource property with a DataTable object (o....
Category: ASP.Net Date: 10/28/2009 6:10:25 AM
ASP.Net : How can you enable automatic paging in DataGrid?

How can you enable automatic paging in DataGrid?

To use the built-in paging of DataGrid, set the AllowPaging property to true and the PageSize proper....
Category: ASP.Net Date: 10/28/2009 6:05:09 AM
ASP.Net : What property must you set, and what method must you call, in order to bind the data from a data source to the Repeater control?

What property must you set, and what method must you call, in order to bind the data from a data sou....

You must set the DataSource property and call the DataBind method.
Category: ASP.Net Date: 10/28/2009 5:15:14 AM
ASP.Net : We have a requirement to use same header and footer for number of pages. How we can implement in ASP.Net with minimum code and effort?

We have a requirement to use same header and footer for number of pages. How we can implement in ASP....

We can use Master Pages which defines the layout (look and feel) and standard behavior for all of th....
Category: ASP.Net Date: 10/28/2009 5:10:00 AM
ASP.Net : Which validation control can we use to make sure the values in two different controls matched?
ASP.Net : Can you tell me the two properties common in every validation controls?

Can you tell me the two properties common in every validation controls?

ControlToValidate property and Text property
Category: ASP.Net Date: 10/28/2009 4:44:15 AM
ASP.Net : What is the difference between trace and debug in ASP.NET?

What is the difference between trace and debug in ASP.NET?

Debug and trace enables you to monitor the application for errors and exception without VS.NET IDE. ....
Category: ASP.Net Date: 10/27/2009 4:56:34 AM
ASP.Net : How can we force all the validation controls to run?

How can we force all the validation controls to run?

Use following server-side C# code: Page.Validate();
Category: ASP.Net Date: 10/27/2009 4:49:04 AM
ASP.Net : What is impersonation in ASP.Net?

What is impersonation in ASP.Net?

Impersonation is when ASP.Net executes code in the context of an authenticated and authorized client....
Category: ASP.Net Date: 10/25/2009 6:08:34 AM
2 3