ASP.NET Sample code from Developer Fusion https://www.developerfusion.com/t/asp.net/code/ ASP.NET Sample code from Developer Fusion http://www.rssboard.org/rss-specification en-GB Tue, 10 Feb 2009 11:24:00 GMT Binding Multiple Fields to ASP.NET ListControl classes 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. http://www.developerfusion.com/code/9723/binding-multiple-fields-to-aspnet-listcontrol-classes/ http://www.developerfusion.com/code/9723/binding-multiple-fields-to-aspnet-listcontrol-classes/ Tue, 10 Feb 2009 11:24:00 GMT Neil Dodson Generate PDFs using C# and the free iTextSharp library 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. http://www.developerfusion.com/code/6623/dynamically-generating-pdfs-in-net/ http://www.developerfusion.com/code/6623/dynamically-generating-pdfs-in-net/ Sun, 15 Apr 2007 20:36:00 GMT James Crowley Developing your first Visual WebGui application An introduction to Visual WebGui through a sample application. http://www.developerfusion.com/code/5639/developing-your-first-visual-webgui-application/ http://www.developerfusion.com/code/5639/developing-your-first-visual-webgui-application/ Sat, 29 Apr 2006 15:57:00 GMT Guy Peled Visual WebGui a unique approach to AJAX development 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". http://www.developerfusion.com/code/5638/visual-webgui-a-unique-approach-to-ajax-development/ http://www.developerfusion.com/code/5638/visual-webgui-a-unique-approach-to-ajax-development/ Sat, 29 Apr 2006 15:45:00 GMT Guy Peled Health Monitoring in ASP.NET 2 This is a code sample for using health monitoring... http://www.developerfusion.com/code/5543/health-monitoring-in-aspnet-2/ http://www.developerfusion.com/code/5543/health-monitoring-in-aspnet-2/ Sat, 01 Apr 2006 17:47:00 GMT Sending Authenticated Emails in .NET 2.0 Learn what's changed with .NET 2.0 and how to send out emails using an SMTP server that requires authentication. http://www.developerfusion.com/code/5456/sending-authenticated-emails-in-net-20/ http://www.developerfusion.com/code/5456/sending-authenticated-emails-in-net-20/ Wed, 01 Mar 2006 15:13:00 GMT Xavier Larrea Uploading Files Using ASP.NET 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. http://www.developerfusion.com/code/5449/uploading-files-using-aspnet/ http://www.developerfusion.com/code/5449/uploading-files-using-aspnet/ Mon, 27 Feb 2006 17:30:00 GMT Man from Mars Building an 'AJAX' ProgressBar in Atlas Learn how to write a basic, client-side Atlas progress bar, and download the source code. http://www.developerfusion.com/code/5340/building-an-ajax-progressbar-in-atlas/ http://www.developerfusion.com/code/5340/building-an-ajax-progressbar-in-atlas/ Thu, 02 Feb 2006 15:45:00 GMT Wilco Bauwer Precise .NET Server Content Caching A simple demonstration of how to programatically use the caching facilities that ASP.NET offers. http://www.developerfusion.com/code/5303/precise-net-server-content-caching/ http://www.developerfusion.com/code/5303/precise-net-server-content-caching/ Sun, 29 Jan 2006 11:38:00 GMT Dimitrios Markatos Url Rewriting with Regex for ASP.NET 2.0 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. http://www.developerfusion.com/code/5302/url-rewriting-with-regex-for-aspnet-20/ http://www.developerfusion.com/code/5302/url-rewriting-with-regex-for-aspnet-20/ Sun, 29 Jan 2006 11:16:00 GMT Xavier Larrea Transactions made easy with .NET 2.0 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. http://www.developerfusion.com/code/5282/transactions-made-easy-with-net-20/ http://www.developerfusion.com/code/5282/transactions-made-easy-with-net-20/ Wed, 25 Jan 2006 01:18:00 GMT Xavier Larrea Encrypting Web.config sections in ASP.NET 2.0 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! http://www.developerfusion.com/code/5263/encrypting-webconfig-sections-in-aspnet-20/ http://www.developerfusion.com/code/5263/encrypting-webconfig-sections-in-aspnet-20/ Sat, 21 Jan 2006 22:25:00 GMT Xavier Larrea Applying XSL transformations to XML in .NET A simple demonstration of how to apply an XSL transformation to an XML file and save the output using .NET http://www.developerfusion.com/code/5247/applying-xsl-transformations-to-xml-in-net/ http://www.developerfusion.com/code/5247/applying-xsl-transformations-to-xml-in-net/ Thu, 19 Jan 2006 09:17:00 GMT Krishnan Using ASHX files to retrieve DB images Learn how to use the little-known Http Handler functionality of ASP.NET to serve images from a database. http://www.developerfusion.com/code/5223/using-ashx-files-to-retrieve-db-images/ http://www.developerfusion.com/code/5223/using-ashx-files-to-retrieve-db-images/ Sun, 15 Jan 2006 12:37:00 GMT Harry Pierson Dynamically loading an IBindableTemplate 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. http://www.developerfusion.com/code/4721/dynamically-loading-an-ibindabletemplate/ http://www.developerfusion.com/code/4721/dynamically-loading-an-ibindabletemplate/ Tue, 06 Sep 2005 19:41:00 GMT James Crowley Binding a Control to an Enum 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. http://www.developerfusion.com/code/4713/binding-a-control-to-an-enum/ http://www.developerfusion.com/code/4713/binding-a-control-to-an-enum/ Wed, 27 Jul 2005 15:14:00 GMT James Crowley A Simple ASP.NET MessageBox Class 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! http://www.developerfusion.com/code/4700/a-simple-aspnet-messagebox-class/ http://www.developerfusion.com/code/4700/a-simple-aspnet-messagebox-class/ Wed, 15 Jun 2005 15:24:00 GMT Lee Gunn - .NET C# Scotland Dynamic thumbnail images from ASP.NET 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. http://www.developerfusion.com/code/4688/dynamic-thumbnail-images-from-aspnet/ http://www.developerfusion.com/code/4688/dynamic-thumbnail-images-from-aspnet/ Mon, 11 Apr 2005 16:15:00 GMT Brock Allen Cross page postbacks in ASP.NET 2.0 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. http://www.developerfusion.com/code/4687/cross-page-postbacks-in-aspnet-20/ http://www.developerfusion.com/code/4687/cross-page-postbacks-in-aspnet-20/ Mon, 11 Apr 2005 16:06:00 GMT Brock Allen Programatically Load User Controls How to programatically load user-controls from code behind pages and then access their properties using reflection. http://www.developerfusion.com/code/4673/programatically-load-user-controls/ http://www.developerfusion.com/code/4673/programatically-load-user-controls/ Sun, 20 Feb 2005 11:03:00 GMT Dave Wanta