ASP.NET

Quick Search

Dot Net Interview Quations 4

February 27th, 2010 by admin
3 comments »

What are possible implementations of distributed applications in .NET?
.NET Remoting and ASP.NET Web Services. If we talk about the Framework Class Library, noteworthy classes are in System.Runtime.Remoting and System.Web.Services.
What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services?
Remoting is a more efficient communication exchange … Read More

Dot Net Interview Quations 3

February 27th, 2010 by admin
1 comment »

Using COM Component in .Net ?
As most of you know that .Net does not encourage the development of COM components and provides a different solution to making reusable components through Assemblies. But, there are a lot of COM components present which our .Net application might need to use. Fortunately, .Net … Read More

Posted in ASP.NET
1 comment »

Dot Net Interview Quations 2

February 27th, 2010 by admin
36 comments »

What are Attributes?
Attributes are declarative tags in code that insert additional metadata into an assembly. There exist two types of attributes in the .NET Framework: Predefined attributes such as AssemblyVersion, which already exist and are accessed through the Runtime Classes; and custom attributes, which you write yourself by extending the … Read More

Dot Net Interview Quations 1

February 27th, 2010 by admin
3 comments »

What is the difference between ADO and ADO.NET?
ADO uses Recordsets and cursors to access and modify data. Because of its inherent design, Recordset can impact performance on the server side by tying up valuable resources. In addition, COM marshalling – an expensive data conversion process – is needed to … Read More

Dot Net Interview Quations

February 27th, 2010 by admin
No comments »

What is .NET?
.NET is essentially a framework for software development. It is similar in nature to any other software development framework (J2EE etc) in that it provides a set of runtime containers/capabilities, and a rich set of pre-built functionality in the form of class libraries and APIs
The .NET Framework is … Read More