C# Delegates Real World Usage

I’ve previously asked a question of about Delegates does anyone have a must have scenario where I would have to use a delegate? How does this improve my C# code? Just as many scenarios I use it in I’ve always seem to be able to program around it. Answers: Thank you for visiting the Q&A … Read more

Data Caching in ASP.Net

I need to fill some dropdown boxex from some reference data. i.e City List, Country List etc. I need to fill it in various webforms. I think, we should cache this data in our application so that, we don’t hit database on every form. I am new to caching and ASP.Net. Please suggest me how to do this.