Our Customers
Contact Us Email: support@barcodelib.com
Home > ASP.NET Barcode > ASP.NET Barcode Generation Guide > How to Generate Interleaved 2 of 5 for ASP.NET Web Project
Download Barcode for ASP.NET Trial

ASP.NET Interleaved 2 of 5 Barcode Generator SDK

Interleaved 2 of 5 Barcode Generation Guide in ASP.NET Web Applications & IIS
  • Fully compatible with the newest Interleaved 2 of 5 ISO/IEC specification
  • Professional Interleaved 2 of 5 barcode generator library completely built in C#
  • Generate Interleaved 2 of 5 barcode in ASP.NET web form applications
  • Generate standard Interleaved 2 of 5 barcode in Internet Information Services
  • Create and output Interleaved 2 of 5 barcode image in C# & VB.NET classes
  • Save Interleaved 2 of 5 barcode image in multiple formats (Jpeg, Gif, Png, Bmp & Tiff)
  • A trustworthy ASP.NET barcode generator dll recommended by many programmers
  • Provide royalty-free and permanent licenses for ASP.NET barcode project developers
Let You Know About ASP.NET Interleaved 2 of 5 Barcode
Interleaved 2 of 5 is a higher-density numeric symbology based on the Standard 2 of 5 symbology. A symbol character pair consists of 14 to 18 modules, depending on wide/narrow ratio.
Interleaved 2 of 5 is also known as ANSI/AIM I-2/5, Uniform Symbology Specification ITF, USS ITF 2/5 etc.
Encodable characters of Interleaved 2 of 5 are 0 to 9 ten numeric characters.
Interleaved 2 of 5 is often used in the storehouse and distribution industry.
Use BarcodeLib.Barcode.ASP.NET DLL to Create Interleaved 2 of 5
  1. Open your Visual Studio and create a web form project.
  2. Find the Toolbox and add BarcodeLib.Barcode.ASP.NET DLL into it. Then, you'll see QRCodeASPNET, PDF417ASPNET, DataMatrixASPNET and LinearASPNET four items.
  3. Drag and drop the item LinearASPNET to your project.
  4. Change the default barcode type to Interleaved 2 of 5 in Type item under the Properties window.
  5. Reset other properties of Interleaved 2 of 5 through Properties window to get a perfect barcode image.
Generate Interleaved 2 of 5 Barcode Using C# & VB.NET Library
  1. The first step is to add reference (BarcodeLib.Barcode.ASP.NET DLL) to your ASP.NET project.
  2. The second step is to compile codes in your ASP.NET class.
Sample codes for Interleaved 2 of 5 barcode generation using ASP.NET C# class:
     BarcodeLib.Barcode.Linear inte2of5 = new BarcodeLib.Barcode.Linear();
inte2of5.Type = BarcodeType.INTERLEAVED25;
inte2of5.Data = "036572";
inte2of5.N = 2;
inte2of5.AddCheckSum = true;

inte2of5.UOM = UnitOfMeasure.PIXEL;
inte2of5.BarWidth = 1;
inte2of5.BarHeight = 60;
inte2of5.LeftMargin = 12;
inte2of5.RightMargin = 12;
inte2of5.TopMargin = 12;
inte2of5.BottomMargin = 12;

inte2of5.ImageFormat = System.Drawing.Imaging.ImageFormat.Bmp;

//save barcode image into your system;
inte2of5.drawBarcode("c://inte2of5.bmp");
Sample codes for Interleaved 2 of 5 barcode generation using ASP.NET VB class:
     Dim inte2of5 As New BarcodeLib.Barcode.Linear()
inte2of5.Type = BarcodeType.INTERLEAVED25
inte2of5.Data = "036572"
inte2of5.N = 2
inte2of5.AddCheckSum = true

inte2of5.UOM = UnitOfMeasure.PIXEL
inte2of5.BarWidth = 1
inte2of5.BarHeight = 60
inte2of5.LeftMargin = 12
inte2of5.RightMargin = 12
inte2of5.TopMargin = 12
inte2of5.BottomMargin = 12

inte2of5.ImageFormat = System.Drawing.Imaging.ImageFormat.Bmp

'save barcode image into your system
inte2of5.drawBarcode("c://inte2of5.bmp")
Generate Interleaved 2 of 5 Barcode in IIS
Easy to generate Interleaved 2 of 5 barcode image in your IIS:
  1. Download and unzip the free trial package.
  2. Copy "barcode" folder in the package to your IIS folder.
  3. Create a new virtual directory named barcode in your IIS.
  4. Link the virtual directory to the above "barcode" folder.
  5. Restart your IIS.
  6. Open URL:
    http://YourDomain:port/barcode/linear.aspx?Type=17&Data=036572&BarWidth=2.5&BarHeight=100
Available Barcode Symbologies in ASP.NET
Support Linear Barcodes:
Support Matrix Barcodes:
Available 2D Barcodes: Data Matrix, PDF 417, QR Code.



Other Related Barcode Generation Articles

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