Our Customers
Contact Us Email: support@barcodelib.com
Home > ASP.NET Barcode > ASP.NET Barcode Generation Guide > ASP.NET Code 93 Barcode Generation Tutorial
Download Barcode for ASP.NET Trial

ASP.NET Code 93 Barcode Generator DLL

Tutorial for Code 93 Barcode Image Generation in ASP.NET
  • Completely support Code 93 barcode creation in multiple .NET versions (.NET 2.0, 3.0 & 4.0)
  • Stream and insert Code 93 barcode image in ASP.NET using C-sharp and Visual Basic programming languages
  • Stream and add most linear and two-dimensional barcode images in web applications
  • Output and save Code 93 barcode image into your system in multiple formats
  • Provide free trial package and tutorial for Code 93 barcode image generation in ASP.NET
  • 100% guarantee high-quality Code 93 Barcode Generator DLL applied in web forms
ASP.NET Code 93 Barcode Overview
Code 93 is a barcode symbology designed in 1982 by Intermec. It is designed to provide a higher density and data security enhancement to Code 39. The symbology length is variable based on your own needs. Every symbol includes two Modulo-47 check digits. Code 93 is used initially by Canada Post to encode supplementary delivery information.
Simple Method to Generate Code 93 Barcode Image in ASP.NET
It’s very easy to drag and drop Code 93 barcode controller to generate Code 93 barcode image in web applications.
  1. Download this trial version of Code 93 ASP.NET Barcode Generator DLL and unzip it.
  2. Simply add reference ("BarcodeLib.Barcode.ASP.NET.dll") to the Toolbox in your Visual Studio.
  3. Find "linear.aspx" and "linear.aspx.cs" in the unzipped folder and copy them to your project folder.
  4. Drag and drop "LinearASPNET" to your ASP.NET web project.
  5. Go to the "Properties" window and select Code 93 in "Type" item under it.
  6. If necessary, reset other properties of your Code 93 barcode image through the "Properties" window.
  7. Run your project and you will certainly see the generated Code 93 barcode image.
Generate Code 93 Barcode Image in Web Forms Using C-sharp and VB
How to generate Code 93 barcode image in ASP.NET using C# class
You just need to add reference ("BarcodeLib.Barcode.ASP.NET.dll") and compile C# demo codes like below.
     BarcodeLib.Barcode.Linear code93 = new BarcodeLib.Barcode.Linear();
code93.Type = BarcodeType.CODE93;
code93.Data = "YYCMC542718916";

code93.UOM = UnitOfMeasure.PIXEL;
code93.BarWidth = 1;
code93.BarHeight = 80;
code93.LeftMargin = 10;
code93.RightMargin = 10;
code93.TopMargin = 10;
code93.BottomMargin = 10;

code93.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff;

// Save barcode image into your system
code93.drawBarcode("c://code93.tiff");
How to generate Code 93 barcode image in ASP.NET using VB class
You just need to add reference (BarcodeLib.Barcode.ASP.NET.dll) and compile VB demo codes like this.
     Dim code93 As New BarcodeLib.Barcode.Linear()
code93.Type = BarcodeType.CODE93
code93.Data = "YYCMC542718916"

code93.UOM = UnitOfMeasure.PIXEL
code93.BarWidth = 1
code93.BarHeight = 80
code93.LeftMargin = 10
code93.RightMargin = 10
code93.TopMargin = 10
code93.BottomMargin = 10

code93.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff

' Save barcode image into your system
code93.drawBarcode("c://code93.tiff")
Generate Code 93 Barcode Image in Internet Information Services
  1. Copy "barcode" folder and all contents to your IIS folder.
  2. Open your IIS and create a new virtual directory (named as barcode).
  3. Connect the newly created virtual directory to the above "barcode" folder.
  4. Immediately restart your IIS.
  5. Open your browser and navigate to:
    http://YourDomain:port/barcode/linear.aspx?Type=9&Data=YYCMC542718916
Supplementary Barcode Symbologies in ASP.NET
Support Linear Barcodes:
Support Matrix Barcodes:
Supplementary 2D Barcodes: Data Matrix, PDF 417, QR Code.



Other Related Barcode Generation Articles

ASP.NET C# & VB.NET Barcode Generation Guide