Thursday, August 16, 2012

Visual Studio 2012 and .NET Framework 4.5 is RELEASED

http://www.hanselman.com/blog/VisualStudio2012AndNETFramework45IsRELEASEDHeres5MinuteVideosToGetYouUpToSpeedQuick.aspx

Wednesday, August 15, 2012

CSS Table Border Style Wizard

http://www.somacon.com/p141.php/

Filtering Data in ASP.NET MVC using jQuery and Partial Views

http://www.devcurry.com/2012/08/filtering-data-in-aspnet-mvc-using.html

Monday, August 13, 2012

How to store a dictionary object in web.config?

<configuration>
  <configSections>
    <section
      name="MyDictionary" type="System.Configuration.NameValueFileSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
  </configSections>
  <MyDictionary>
     <add key="name1" value="value1" />
     <add key="name2" value="value2" />
  </MyDictionary>
</configuration>
NameValueCollection section = (NameValueCollection)ConfigurationManager.GetSection("MyDictionary");