https://www.developerfusion.com/code/sort/popularity/ Sample code from Developer Fusion 2008-08-06T09:35:00.00Z http://www.developerfusion.com/code/3244/how-to-convert-a-string-to-a-date/ How to convert a string to a date 2003-01-11T09:53:00.00Z Finding out how to convert one type to another in .NET is tricky. Here is the answer to converting a string to a DateTime type. Edward Tanguay http://www.developerfusion.com/code/2058/determine-execution-time-in-php/ Determine execution time in PHP 2002-03-08T07:13:00.00Z This is based on the ASP script posted by Lio. It will determine the time taken for a php script to execute correct to 0.000000000000001 seconds. Gringod http://www.developerfusion.com/code/3944/how-to-create-xml-files/ How to create XML files 2003-08-13T10:23:00.00Z How to generate XML files in PHP using its new_child function. Edward Tanguay http://www.developerfusion.com/code/2645/how-to-get-the-current-sessionid/ How to get the current SessionID 2002-07-13T06:35:00.00Z Demonstrates how to retrieve the current SessionID for storing session data in a database Edward Tanguay http://www.developerfusion.com/code/7987/making-a-net-app-run-on-vista-with-administrator-priviledges/ Making a .NET app run on Vista with Administrator priviledges 2008-08-06T09:35:00.00Z If you're targeting Windows Vista and your application requires administrator priviledges (such as accessing the program files directory), then it will fail unless you include a manifest so Windows knows. Here's how. James Crowley http://www.developerfusion.com/code/4654/asynchronous-httpwebrequest/ Asynchronous HttpWebRequest 2005-01-14T04:08:00.00Z Demonstrates how to build a much more responsive and user-friendly application by using asynchronous HttpWebRequests. Steven Cohn http://www.developerfusion.com/code/2007/simple-key-logger/ Simple Key logger 2002-03-08T12:48:00.00Z I'm working on a real keylogger, and I was researching how to do them, and after a bit of thinking I came up with this code... Jamie Lindgren http://www.developerfusion.com/code/5342/css-font-shorthand-rule/ CSS font shorthand rule 2006-02-02T16:05:00.00Z Learn how to shorten those CSS font rules. Trenton Moss http://www.developerfusion.com/code/1975/sending-email-using-smtp-and-java/ Sending email using SMTP and Java 2002-02-24T15:17:00.00Z How to send an email using an SMTP server and Java Kevin Saitta http://www.developerfusion.com/code/3826/adding-controls-to-placeholders-dynamically/ Adding controls to PlaceHolders dynamically 2003-07-07T04:29:00.00Z A simple example demonstrating how to dynamically add controls to a PlaceHolder control. Edward Tanguay http://www.developerfusion.com/code/1628/get-host-name-from-ip-address-and-vice-versa/ Get host name from IP address, and vice versa 2001-08-13T12:54:00.00Z Resolve a host name to it's IP address, and an IP address to its host name with this re-usable class module James Crowley http://www.developerfusion.com/code/4504/merge-an-exe-and-a-dll-into-one-exe/ Merge an .exe and a .dll into one .exe 2004-03-02T04:47:00.00Z How to merge an .exe and a .dll into one .exe using ilmerge in VS.NET Edward Tanguay http://www.developerfusion.com/code/4673/programatically-load-user-controls/ Programatically Load User Controls 2005-02-20T11:03:00.00Z How to programatically load user-controls from code behind pages and then access their properties using reflection. Dave Wanta http://www.developerfusion.com/code/4267/how-to-check-to-make-sure-a-url-is-valid/ How to check to make sure a URL is valid 2004-01-06T06:48:00.00Z A neat bit of code that checks if a domain is valid and actually exists. Edward Tanguay http://www.developerfusion.com/code/5405/css-positioning-within-a-container/ CSS Positioning Within a Container 2006-02-18T12:44:00.00Z One of the best things about CSS is that you can position an object absolutely anywhere you want in the document. It's also possible (and often desirable) to position objects within a container. It's simple to do too. Trenton Moss http://www.developerfusion.com/code/6623/dynamically-generating-pdfs-in-net/ Generate PDFs using C# and the free iTextSharp library 2007-04-15T20:36:00.00Z Learn how to use the free iTextSharp library to load a PDF form, populate some dynamic fields, and then save out a flat PDF file. James Crowley http://www.developerfusion.com/code/4445/userfriendly-validation-using-errorprovider/ User-Friendly Validation using ErrorProvider 2004-02-15T09:33:00.00Z Data entry is a very important part of a lot of applications. It is important to validate data as it is entered without disturbing the user. Enter the ErrorProvider component. Tim Dawson http://www.developerfusion.com/code/278/open-a-fileurl-with-its-default-program/ Open a file/url with its default program 2001-07-14T14:48:00.00Z How to open a file, url or email address with its default program James Crowley http://www.developerfusion.com/code/1626/get-the-visitors-ip-address/ Get the visitor's IP address 2001-08-13T12:53:00.00Z How to get the visitors IP address from within your ASP script James Crowley http://www.developerfusion.com/code/4639/customize-xml-serialization-using-ixmlserializable/ Customize XML Serialization using IXmlSerializable 2004-12-17T16:14:00.00Z Learn how to implement the IXmlSerializable in order to customize serialization of your objects - for instance, serializing a NameValueCollection. James Crowley