ASP.NET BarcodeControl

Namespace: Lesnikowski.Web
Assembly:  Barcode (in Barcode.dll)
Version: 1.0.5.40001

Syntax

C#
public class BarcodeControl : Control
Visual Basic (Declaration)
Public Class BarcodeControl _
	Inherits Control
Visual C++
public ref class BarcodeControl : public Control

Remarks

To use BarcodeControl:
  1. Create new ASP.NET project
  2. Add new web.config file if you don't have one
  3. Set up an HttpHandler in an ASP.NET web application - add the following code to your web.config file, inside the <system.web> section:
                    <httpHandlers>
                        <add verb="*" path="Barcode.axd" type="Lesnikowski.Web.BarcodeHttpHandler, Barcode"  />
                    </httpHandlers>
                
  4. Add Barcode control to the toolbox:
    • use the right mouse button on toolbox
    • click 'Choose items...' or 'Add/Remove Items'
    • then click 'Browse' and point 'Barcode.dll' file
  5. Drag and drop BarcodeControl from toolbox to your webpage. This will add the references to Barcode.dll to your project.

Inheritance Hierarchy

System..::Object
  System.Web.UI..::Control
    Lesnikowski.Web..::BarcodeControl

See Also