• HTTP Post in C# .Net

    Why re-invent the wheel? 😉 See below for a few quick examples from the minds over at csharp-online and codeproject. Note: Any snippets may have been condensed from their original sources for brevity. See references for original articles. All examples are in C# .Net. HTTP Post: Intermediate webrequest usage: References: Csharp-online, “HTTP Post”, http://en.csharp-online.net/HTTP_Post Codeproject,…

  • IIS 7 Remote Administration Manager

    At the time of writing this article, in the latest version of Windows (Vista,7 and Server 2008), IIS management has changed quite a bit. IIS7 features some very cool remote management capabilities. In an environment where developers may need access to IIS, but not necessarily the server, or too many remote logins to the server…

  • Convert SQL to Linq

    Was looking to convert a complex SQL query and short on time, so came across this nifty little tool to automate the conversion! It even outputs and autobuilds necessary classes! At the time of this article supports all versions of Linq in .Net up to 4.0. Linqer References Linqer, http://www.sqltolinq.com/

  • Strong Password Generator

    Pretty good little web based site to generate strong passwords on the fly. Once I have some time to whip up a little tool to do the same I’ll be sure to post code here. (Requires javascript:) StrongPasswordGenerator References StrongPasswordGenerator, http://strongpasswordgenerator.com/

  • String Formatting

    Snippets below have been condensed from their original sources for brevity. See references for original articles. All examples are in C# .Net. My own little function: Format With extension method by James Newton-King: References James Newton-King, “FormatWith”,http://james.newtonking.com/archive/2008/03/27/formatwith-string-format-extension-method.aspx