Monday, November 21, 2005

Step-By-Step Guide to Convert Web Projects from Visual Studio .NET 2002/2003 to Visual Studio 2005

Microsoft has released a step-by-step guide to convert your ASP.NET applications from Visual Studio 2002/2003 to Visual Studio 2005. The process has four steps;

1. Preparing your VS 2002/2003 project to be moved.
2. Migrating the web project.
3. Post migration changes and
4. What to look out for after moving the application.

Read the complete article from Microsoft here...

Thursday, November 17, 2005

SQL Server 2005 Learning Guide


Here is the place where you can learn about Sql Server 2005. Happy learning :-)

Wednesday, November 16, 2005

Understanding Page Inheritance in ASP.NET 2.0

ASP.NET 2.0 makes use of partial classes to provide this improved stability in the page model. The core model hasn’t change all that much from ASP.NET 1.1 as the combined classes are still very similar to the single codebehind page used in 1.1. You still have page inheritance where the ASPX page inherits from your partial class and the generated control definitions.

To know click here...

Wednesday, November 09, 2005

Asynchronous Web Services in .NET Using WSE 2.0

When designing applications for consuming Web services, the response time needs to be taken into consideration. If the Web service happens to be on a remote server in an Internet scenario, the response times could be quite high due to heavy network traffic.... Rekha kodali says more here