Namespace used for Microsoft Visual Studio Unit Testing –Microsoft.VisualStudio.TestTools.UnitTesting Example in C# : using System;using System.Text;using System.Collections.Generic;using System.Linq;using Microsoft.VisualStudio.TestTools.UnitTesting;namespace TestProjectMath{ [TestClass] public class […]
Category: .NET Interview Questions
Unable to install .NET Framework 4.5 using dotNetFx45_Full_setup.exe installer without internet connection in server
Error : Unable to install .NET Framework 4.5 using dotNetFx45_Full_setup.exe installer without internet connection in server Resolution : dotNetFx45_Full_setup.exe installer is web installer for .NET […]
Where to define AutoEventWireup attribute in ASP.NET
One can specify AutoEventWireup attribute in the following locations: • The Machine.config file • The Web.config file • Individual Web Forms (.aspx files) • Web […]
What is AutoEventWireup attribute in ASP.NET
AutoEventWireup attribute is set to false by default in the .aspx page and event handlers are automatically created. When you set the value of the […]
.NET components call COM components.
.NET Components can call COM components The proxy used in calling unmanaged code from managed code is known as a Runtime-Callable Wrapper, or RCW. Ways […]
New Features of VB.NET and C# languages in 2005 version
New Features of VB.NET and C# languages in 2005 version VB.NET C# Visual Basic 2005 has many new and improved language features — such as […]
AJAX Poll Questions
What is default value of UpdateMode property of ASP.NET UpdatePanel control ? 1. Always 2. Conditional 3. Partial 4. Never Please provide right answer […]
Introduction to ASP.NET MVC using C#
Getting Started Start by running Visual Studio 2010 and select New Project from the Start page. Visual Studio 2010 – Start Page Creating Your […]
ADO.NET Data Row Version values
ADO.NET Data Row Version values DataRowVersion value Description Current The current values for the row. This row version does not exist for rows with a […]
ADO.NET Row State Versus Row Versions
Row state indicates the status of a row whereas Row versions maintain the values stored in a row as it is modified, including current, original, and […]
