https://www.developerfusion.com/t/.net/code/sort/popularity/ .NET Sample code from Developer Fusion 2008-08-28T11:22: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/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/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/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/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/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 http://www.developerfusion.com/code/8063/deep-clone-an-object-in-net/ Deep clone an object in .NET 2008-08-28T11:22:00.00Z A simple code snippet that deep-copies an object by serializing and de-serializing using the BinaryFormatter James Crowley http://www.developerfusion.com/code/4684/read-mp3-tag-information-id3v1-and-id3v2/ Read MP3 Tag Information (ID3v1 and ID3v2) 2005-03-31T18:50:00.00Z This sample source code demonstrates how to read IP3v1 and IP3v2 tag information from MP3's, along with MPEG headers too. Erin Jones http://www.developerfusion.com/code/4393/create-controls-at-runtime/ Create Controls At Runtime 2004-02-04T16:30:00.00Z Shows how to create controls at runtime and set their properties Colin Harman MACITP http://www.developerfusion.com/code/4390/placing-results-from-datareader-into-an-array/ Placing results from DataReader into an Array 2004-02-04T11:32:00.00Z Since a connection cannot be used until a DataReader has been closed, it is quite often necessary to read the results of a DataReader into an array, then close the DataReader, then you can process the data in the array while you use the connection for something else. This shows you how. Edward Tanguay http://www.developerfusion.com/code/5679/start-a-process-as-a-different-user/ Start a Process as a Different User 2006-05-09T22:12:00.00Z This tutorial will help you learn how to start a process as another user e.g. the Administrator account. Peter Rekdal Sunde http://www.developerfusion.com/code/4650/validating-an-integer/ Validating an Integer 2005-01-09T14:40:00.00Z How to validate an Integer the fast/efficient way in C# using Double.TryParse() Simon Soanes http://www.developerfusion.com/code/4712/generate-an-image-of-a-web-page/ Generate an Image of a Web Page 2005-07-22T15:50:00.00Z Demonstrates how to fetch images and thumbnails of web pages using a hidden web browser control. Alan Dean http://www.developerfusion.com/code/3903/is-an-internet-connection-available/ Is an Internet Connection Available? 2003-08-01T06:55:00.00Z Check if an internet connection is available using this simple code snippet. Karl Moore http://www.developerfusion.com/code/4340/ftp-client-library-for-c/ FTP client library for C# 2004-01-26T04:25:00.00Z An FTP client library for C#, including asynchronous operation Dan Glass