Generate Insert Statements from SQL Server Database Using Stored Procedure

I have been in a situation many times when I need to transfer my SQL database from local server to another, what worst – export tool of SQL Server Management Tool doesn’t work due to permission problem at live server. Then what to do? It would be better if a procedure is there which generates [...]

Run ASP.NET 1.1 and ASP.NET 2.0 Same Time on 64-bit Windows Server

There is a possibility which you have faced many times while developing ASP.NET applications and testing them onto different versions like .NET 1.1 and .NET 2.0. On a 32-bit Windows server, we can setup 1.1 or 2.0 Web applications by “ASP.NET Tab” in Internet Information Services (IIS) Manager. It’s quite simple but on a 64-bit [...]

Application Development Using LINQ Part – 3

In the previous article we have learned about datacontext, the “var” keyword, retrieving data through LINQ, binding retrieved data to controls and conditional retrieval of data. In this part we will be looking at the different groups of controls on the “Add/Delete” tab, looping through retrieved results and the “distinct” method in LINQ. Controls on [...]

Application Development Using LINQ Part – 2

In the previous article we have learned much about the LINQ and its advantage over normal SQL statements, and to know the working of LINQ we are creating an Inventory Application of which GUI we have created. Now, in this part we will be looking at datacontext, the “var” keyword, retrieving data through LINQ, binding [...]

Creating Your First Website Using Django Open Source Framework

Django is an open source framework for developing websites. It offers unprecedented ease in defining complex data structures. It emphasizes rapid development and the DRY principle. There are several advantages of Django, for example, the applications you create cleanly separate the model, the view and the template. Django lets you describe how your data is [...]

Component Programming Concepts in .NET

Component based programming has one major advantage that it allows your code to be more organized, consistent and reusable. A component, in its simplest form, may be defined as one or more classes that are compiled into a separate DLL assembly file. You can use these components in one application or share between multiple applications, [...]