Skip to content

Blog


Categories:

Why I am still not using ASP.NET MVC Framework !

Post date:
Author:
Number of comments: no comments

It’s said “ASP.NET MVC Framework” is the biggest innovation in Microsoft web development since ASP.NET 1.0″. Eventhough techies are of the view that APS.NET WebForms programming is here to stay many have started predicting its replacement with MVC within a year or so. Let me quote Jeffrey Palermo, author of “ASP.NET MVC in Action” – […]

Categories:

Ranking Functions within SQL Server 2005

Post date:
Author:
Number of comments: no comments

With SQL Server 2005, Microsoft introduced a number of new features. These new features make it easier for a DBA or SQL Server developer to code against and to maintain SQL Server databases. In this article I will discuss the new ranking functions provided with SQL Server 2005. These new functions make it much easier […]

Categories:

Infosys’ success secret

Post date:
Author:
Number of comments: no comments

The three aspects of ensuring success for any entrepreneur was innovation, ability to use innovation to create service and products that add value to customers and the ability to communicate the value to customers, Infosys Chairman N R Narayana Murthy said. “Think of innovation and marketing as two most important instruments for creating a wonderful […]

Categories:

Developing High-Performance ASP.NET Applications

Post date:
Author:
Number of comments: no comments

1. Disable session state when you are not using it. 2. Choose your session-state provider carefully. 3. Avoid unnecessary round trips to the server. 4. Use Page.IsPostBack to avoid performing unnecessary processing on a round trip. 5. Use ASP.NET server controls in appropriate circumstances. 6. Save server control view state only when necessary. 7. Leave […]

Categories:

Caching in ASP.net

Post date:
Author:
Number of comments: no comments

The main benefits of caching are performance-related: operations like accessing database information can be one of the most expensive operations of an ASP page’s life cycle. If the database information is fairly static, this database-information can be cached. Caching helps us to achieve three important aspects of QoS (Quality of Service): Performance – Caching improves […]