TechBubbles

Archive for July, 2009

Performance tuning For .NET Applications

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. I also discuss the tools and strategies to determine the bottlenecks of memory in .NET Applications.

dot_net_memory_profiler_graph

Read more

Related Posts:

  • No Related Posts
No comments

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.

                                                    webservice

Read more

Related Posts:

1 comment

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 mature and stable for developing enterprise web applications and it is being supported by many third party controls and tools.

Microsoft basically extended the VB programming model to web forms where developers need not to be a expert in HTML and JavaScript to write effective web applications. To simulate the stateful nature of the desktop development it introduced the features like viewstate and  postbacks.

Key Features of ASP.NET Web Forms are

  • Having a Rich control set and third party support
  • Easy development for Enterprise Web Applications
  • Similar to desktop development and easier for the developers to write code with minimal knowledge of web concepts
  • It is a candidate for RAD Application Development
  • Web forms is a great choice for developing heavily data driven applications.

Read more

Related Posts:

3 comments

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 you auto-complete common ASP.NET and HTML tags.

 


Share this post :

Related Posts:

  • No Related Posts
No comments

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.

                                                    image-thumb

Read more

Related Posts:

  • No Related Posts
No comments