https://www.developerfusion.com/t/asp.net/code/ ASP.NET Sample code from Developer Fusion 2009-02-10T11:24:00.00Z http://www.developerfusion.com/code/9723/binding-multiple-fields-to-aspnet-listcontrol-classes/ Binding Multiple Fields to ASP.NET ListControl classes 2009-02-10T11:24:00.00Z Out of the box, the ASP.NET list controls (CheckBoxList, RadioButtonList, DropDownList) only support data binding on a single field. Learn how to work around this to bind to as many fields as you need. Neil Dodson 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/5639/developing-your-first-visual-webgui-application/ Developing your first Visual WebGui application 2006-04-29T15:57:00.00Z An introduction to Visual WebGui through a sample application. Guy Peled http://www.developerfusion.com/code/5638/visual-webgui-a-unique-approach-to-ajax-development/ Visual WebGui a unique approach to AJAX development 2006-04-29T15:45:00.00Z Visual WebGui is not just another AJAX framework but rather a different approach to web application development, specially designed to simplify building highly complex applications like Outlook Web Access (OWA). Visual WebGui makes it possible for developers to create applications that were previously developed only by the "big guys". Guy Peled http://www.developerfusion.com/code/5543/health-monitoring-in-aspnet-2/ Health Monitoring in ASP.NET 2 2006-04-01T17:47:00.00Z This is a code sample for using health monitoring... http://www.developerfusion.com/code/5456/sending-authenticated-emails-in-net-20/ Sending Authenticated Emails in .NET 2.0 2006-03-01T15:13:00.00Z Learn what's changed with .NET 2.0 and how to send out emails using an SMTP server that requires authentication. Xavier Larrea http://www.developerfusion.com/code/5449/uploading-files-using-aspnet/ Uploading Files Using ASP.NET 2006-02-27T17:30:00.00Z No need of third party components to upload your files. It is so easy to upload files in ASP.NET using just 3 lines of code. Man from Mars http://www.developerfusion.com/code/5340/building-an-ajax-progressbar-in-atlas/ Building an 'AJAX' ProgressBar in Atlas 2006-02-02T15:45:00.00Z Learn how to write a basic, client-side Atlas progress bar, and download the source code. Wilco Bauwer http://www.developerfusion.com/code/5303/precise-net-server-content-caching/ Precise .NET Server Content Caching 2006-01-29T11:38:00.00Z A simple demonstration of how to programatically use the caching facilities that ASP.NET offers. Dimitrios Markatos http://www.developerfusion.com/code/5302/url-rewriting-with-regex-for-aspnet-20/ Url Rewriting with Regex for ASP.NET 2.0 2006-01-29T11:16:00.00Z A new feature in ASP.NET 2.0 is it's built-in url rewriting support. When i looked into this new feature I found that it lacked regular expressions support, which is really the point of an Url Mapper. So, this code demonstrates how to create a Url Rewriting Module with Regex support in ASP.NET. Xavier Larrea http://www.developerfusion.com/code/5282/transactions-made-easy-with-net-20/ Transactions made easy with .NET 2.0 2006-01-25T01:18:00.00Z One of the more significant improvement in .NET 2.0 is the transactions area. Now with a single line it becomes extremely easy to support transactional code blocks using the concept of “ambient” transaction thanks to TransactionScope in the System.Transactions namespace. Xavier Larrea http://www.developerfusion.com/code/5263/encrypting-webconfig-sections-in-aspnet-20/ Encrypting Web.config sections in ASP.NET 2.0 2006-01-21T22:25:00.00Z Learn how to encrypt any section of your Web.config file on-the-fly and programatically; plain-text connection strings in your config file are no more! Xavier Larrea http://www.developerfusion.com/code/5247/applying-xsl-transformations-to-xml-in-net/ Applying XSL transformations to XML in .NET 2006-01-19T09:17:00.00Z A simple demonstration of how to apply an XSL transformation to an XML file and save the output using .NET Krishnan http://www.developerfusion.com/code/5223/using-ashx-files-to-retrieve-db-images/ Using ASHX files to retrieve DB images 2006-01-15T12:37:00.00Z Learn how to use the little-known Http Handler functionality of ASP.NET to serve images from a database. Harry Pierson http://www.developerfusion.com/code/4721/dynamically-loading-an-ibindabletemplate/ Dynamically loading an IBindableTemplate 2005-09-06T19:41:00.00Z Demonstrates how to dynamically load an IBindableTemplate from a file for use with new ASP.NET 2.0 controls such as the FormView, to workaround the lack of a LoadBindableTemplate method in the new version of the framework. James Crowley http://www.developerfusion.com/code/4713/binding-a-control-to-an-enum/ Binding a Control to an Enum 2005-07-27T15:14:00.00Z Ever had an Enum (with a set of names and values) that you wanted to bind to a control like a DropDownList? Here's how. James Crowley http://www.developerfusion.com/code/4700/a-simple-aspnet-messagebox-class/ A Simple ASP.NET MessageBox Class 2005-06-15T15:24:00.00Z When moving from Windows Forms to ASP.NET Web Forms, an API that may be missed is that offered by the System.Windows.Forms.MessageBox Class. Here we implement it for ASP.NET! Lee Gunn - .NET C# Scotland http://www.developerfusion.com/code/4688/dynamic-thumbnail-images-from-aspnet/ Dynamic thumbnail images from ASP.NET 2005-04-11T16:15:00.00Z This sample code is an IHttpHandler implementation that reads a JPG from the filesystem and dynamically generates a thumbnail sized version of the image and emits that to the response stream. What I like about this approach is that you don't need to create a file on the filesystem for the thumbnail as it's all done in memory. Brock Allen http://www.developerfusion.com/code/4687/cross-page-postbacks-in-aspnet-20/ Cross page postbacks in ASP.NET 2.0 2005-04-11T16:06:00.00Z ASP.NET 2.0 introduces the ability to have an ASPX page postback to a different ASPX page with cross page postbacks. This was done all the time in ASP but wasn’t supported in ASP.NET 1.x. Here we show you how to use this new feature. Brock Allen 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