.NET Interview Questions and Answers

· Differences

1. Difference between Classic ASP and ASP.Net?
Answer:
§ ASP is Interpreted language based on scripting languages like Jscript or VBScript.
§ ASP has Mixed HTML and coding logic.
§ Limited development and debugging tools available.
§ Limited OOPS support.
§ Limited session and application state management.
§ Poor Error handling system.
§ No in-built support for XML.
§ No fully distributed data [...]

Register and unregister a DLL

How to register  and unregister a DLL?
It is possible that your application requires this DLL to be on the search path. In this case you could move it to
\WINDOWS\system32
Or the application requires it to be in the application directory.
Now to register it, you need to move to the directory where the DLL is located and [...]

Create EXE or Setup File in .NET Windows Application

 
Hi .NET Architects!
Visual Studio 2005 Setup and deployment Projects provides to make a exe in .NET windows application is easy and rapidly
Visual Studio provides templates for four types of deployment projects: Merge Module Project, Setup Project, Web Setup Project, and Cab Project. In addition, a Setup wizard is provided to help step you through the [...]

Encryption and Decryption in VB.NET

How to secure the data at the time of transmissions in VB.NET?before going this chapter we see the concepts of encryption and decryption.
Encryption is the conversion of data into a form, called a cipher text, that cannot be easily understood by unauthorized people. Decryption is the process of converting encrypted data back into its original form,
Encryption:
original [...]

Windows Forms Applications

Hi .net buddies!Windows forrms applications are very intersting one then last twelve months i playing on this forms and here i provide some useful informations on windows forms what was i know about this…
How to carry value from one form to another form in vb.net windows applications?
Web applications you can able to using session objects,But [...]