Popular Posts

Friday, November 16, 2012

Easy way to create query string

Not sure why this class is not publicly available?? You have to access it using the HTTPUtility.ParaseQueryString. The cool thing is that it returns encoded URL... This prints: Name=Rahman+Mahmoodi&Location=Sydney+Australia

Code Snippet
  1.        var col = System.Web.HttpUtility.ParseQueryString(string.Empty);
  2.             col.Add("Name", "rahman mahmoodi");
  3.             col.Add("Location", "Sydney Australia");
  4.  
  5.             MessageBox.Show(col.ToString());

Google Maps - Latitude and Longitude

Google map tuts series

Google Maps - Latitude and Longitude:

'via Blog this'

Show Your Data on Google Map using C# and JavaScript - CodeProject

a way of showing google map and dynamically creating the javascript file

Show Your Data on Google Map using C# and JavaScript - CodeProject:

'via Blog this'

Wednesday, November 14, 2012

JSON C# Class Generator - Home

An open source utility that converts the Json to C# classes....


JSON C# Class Generator - Home:

'via Blog this'

json2csharp - generate c# classes from json

Excellent Json to C# converter.... eg! once the Json result is returned from the service we can use this website to convert the Json result to C# classes!!! This is absolutely Great!


json2csharp - generate c# classes from json:

'via Blog this'