Welcome to AspAdvice Sign in | Join | Help

January 2006 - Posts

Generate thumbnails via your images

Here is the code to stream the images to the client or save to a local file system. using System; using System.IO; namespace Swafford { /// <summary> /// Creates a thumbnail image from a file spec in the calling URL. /// </summary> public
Posted by sswafford | (Comments Off)
Filed under: ,

Use Cases and Their Importance

Check out my newly published article titled: Use Cases and Their Importance First and most importantly, I will define what a use case is. A use case is a tactic used in system analysis to identify, clarify, and categorize system requirements. The use
Posted by sswafford | (Comments Off)
Filed under:

Dynamically building controls in .NET 1.1

Say you need to dynamically build a group of controls and render them in a web form. One method that has worked for my was to use a PlaceHolder and add the generated controls to the placeholder. For example: /// <summary> /// Generates the control.
Posted by sswafford | (Comments Off)
Filed under: ,