Skip to content

Category: Technology


Celebrating Holi with Family, Friends, Colleagues and Suno.ai!

Celebrating Holi with Family, Friends, Colleagues and Suno.ai!
Post date:

πŸŒˆπŸŽ‰ This year again I experienced the magic of Holi surrounded by my beloved family, friends and colleagues. As the colors spread around us, I couldn’t help but reflect on the profound significance of this age-old tradition in modern times. 🎨🎊 Holi, often referred to as the festival of colors, transcends mere festivities. It embodies […]

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

Categories:

Get Logging in database with the Enterprise Library 4.1

Post date:

Applications generate logs to keep track of their health, to assist in debugging, and for auditing purposes. Logging makes applications more supportable by giving developers a standardized method for recording application information. The Logging Application Block is designed to support flexible and robust logging configurations. The heart of the Enterprise Library Logging Application Block is […]