Skip to content

Blog


Categories:

Infosys’ success secret

Post date:

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:

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:

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 […]

Categories:

Giving SOAP a REST

Post date:

Many developers will be surprised to learn that SOAP isn’t the only game in town for Web services interfacing. REST offers a perfectly helpful solution for most implementations, with greater flexibility and lower overhead. Developers need to stop reaching immediately for SOAP and start choosing the right technology for the application. What is REST? REST […]