Performance tuning is one of the daunting task for making your applications run faster. There are several factors that can cause your application run slow. One of the factor is memory which can directly impact on your program execution. This post discusses the basics of memory optimization for .NET programs. If we outline the cases where memory access is bottleneck then it is easier for tune them...
REST and SOAP
Which is better SOAP or REST? One of the most common discussions. Both REST and SOAP are different approaches in writing the service oriented applications. REST is an architectural style for building client-server applications. SOAP is a protocol for exchanging data between two endpoints...
ASP.NET MVC and Web Forms
This post explores the pros and cons of both ASP.NET Forms and ASP.NET MVC and also discusses why Microsoft released another ASP.NET Framework called ASP.NET MVC. There has been a discussion on choosing the framework for developing the web applications. The following comparisons will help the developers when to choose one or the other. Benefits of ASP.NET Web Forms ASP.NET Web Forms is...
Visual Studio 2010 Designer Improvements
The Web Developer Designer in VS 2010 has been enhanced for greater CSS compatibility, includes support for HTML and ASP.NET markup snippets. Improved CSS compatibility The Developer designer in VS 2010 has been updated to improve CSS 2.1 standards compliance. HTML and JScript Snippets In the HTML editor, IntelliSense auto-completes tag names. VS 2010 includes over 200 snippets that help...
ASP.NET Application Deployment in VS 2010
ASP.NET Developers often find the following difficulties in deploying the applications • You may require an FTP to transfer your application to shared hosting site. You must also need to perform tasks such as running SQL scripts to configure a database and changing IIS settings such as configuring a virtual directory folder for application...