Saurabh Nijhawan
C# | .NET | Design Patterns | Data Structures & Algorithms
- 
Single Key Multiple Values Data Structure for one to many mapping
Dictionaries would not allow duplicate keys. You can obviously create a Dictionary like Dictionary<int, List<string>>, but ToLookup extension method saves you time in a way that you just have to tell it how keys are calculated and it'd make the DS for you. Additionally it' gives you functionality to iterate over the groupings etc.
 - 
The Template Method Design Pattern using C# .Net
First of all I'll just put this pattern in context and describe its intent as in the GOF book:
 - 
Implementing Linked Lists in C#
The question is why you need Linked Lists and why it is the foundation of any Abstract Data Structure.
 - 
Difference between Factory Method and Abstract Factory design patterns using C#.Net
I have moved this blog to http://pragmaticdevs.wordpress.com/
 - 
Debugging not working in ASP.NET Browser showing errors like , Page cannot be displayed.
For updated version of the article please visit www.agnosticdevs.com
Quick Checks:
- Is it a .aspx page or by mistake you are trying to open a masterpage or a user control. Just check once.
 - Also try to clean and recompile your solution.
 - Make sure to close ASP.NET development server, or reset IIS.
 - Make sure all projects are in 'Debug' mode.
 - Make sure all projects are targeted to the same .NET Framework version.
 
 - 
Object Oriented JavaScript using Prototype Object
Object Oriented JavaScript using Prototype Object
 - 
Setting AlterNateRow BackColor For Two Rows At A Time In GridView
This was part of a question asked on asp.net forums, i thought of sharing it here as well.
 - 
Creating a N/3-Tier/Layered Application
 - 
Sending HTML Mail Using Gmail SMTP (using System.Net.Mail namespace)
INTRODUCTION: Sending emails requires SMTP server and hence usually you won’t be able to send emails from your local machine [In case you have SMTP server configured on your local machine, you can surely send emails using that!].
 - 
ASP.NET Authorization Vs Authentication