HTML5 Upload Directory Get link Facebook Twitter Pinterest Email Other Apps May 16, 2011 http://html5-demos.appspot.com/static/html5storage/demos/upload_directory/index.html# Get link Facebook Twitter Pinterest Email Other Apps Comments
Office 365 service comparison August 26, 2014 http://technet.microsoft.com/en-us/office/dn788955 Read more
C#: Format number to string with comma separated with thousand place May 19, 2011 int number = 1000000000; string whatYouWant = number.ToString("#,##0"); //You get: 1,000,000,000 Read more
Execute JavaScript in ASP.NET Code Behind December 20, 2010 If you want to execute JavaScript in code behind for example after an event, you can: ScriptManager.RegisterStartupScript(this, GetType(), "anyName", "myScript();", true); Read more
Comments