ASP.NET Barcode 2 of 5 Interleaved Generator

- Reliable Interleaved 2 of 5 barcode component for ASP.NET 2.0/3.0/3.5/4.0
- Support SSRS, Crystal Reports for .NET and Local Reports(RDLC) in ASP.NET
- Easy to generate and print Interleaved 2 of 5 barcode image in ASP.NET Web Applications
Interleaved 2 of 5 Barcode Generation in ASP.NET
- The managed code is 100% written in C#.NET for ASP.NET applications
- Easily integrate into any .NET languages such as C#, VB.NET, Managed C++, etc
- Time-stamped and strong-named .NET Assemblies
- Draw barcodes in multiple image formats such as Gif, Tiff, Bmp, Png and Jpeg
- Support Interleaved 2 of 5 generation in web browser using IIS through URL
- Work perfectly in ASP.NET class
- The generated Interleaved 2 of 5 is compatible with International standard ISO/IEC 16390
- Support barcode rotation in 0, 90, 180 or 270 degree
Avapose Interleaved 2 of 5 Barcode Control for ASP.NET provides three implementations of drawing Interleaved 2 of 5 in ASP.NET applications. It is easy to generate barcodes in ASP.NET using drag-and-drop method as well as class library through any .NET languages in Visual Studio. Besides, developers can also generate dynamic Interleaved 2 of 5 in html or aspx pages using IIS through URL.
Interleaved 2 of 5 Barcode Component for ASP.NET Development:
- ASP.NET Web Site(design-time and runtime support)
- Console Application (runtime support)
- Class Library (runtime support)
- .NET Web Service project (runtime support)
ASP.NET Barcode Server Control - Interleaved 2 of 5 Specifications
Interleaved 2 of 5 is a number-only barcode symbology that encodes even number of digits. It is a continuous non-fixed length barcode that widely used in wholesale and library to store the encoded data. A checksum character in Interleaved 2 of 5 is optional. Since Interleaved 2 of 5 must always have an even number of digits, when a check digit is added, the leftmost character may need to add a zero.
.NET Interleaved 2 of 5 Generator for ASP.NET encodes:
- Digital characters : 0, 1, 2 ,3 ,4, 5, 6 ,7 ,8 ,9
ASP.NET Barcode Making Component - Interleaved 2 of 5 Generation
Requirements:
Before you generate Interleaved 2 of 5 in ASP.NET, you should install:
- Windows 2000, Windows XP, Windows Vista, Windows 7, etc
- .NET Framework 2.0/3.0 and advanced version
- Microsoft Visual Studio (any version)
- IIS
- Avapose.Barcode for ASP.NET
Drag and drop barcode 2 of 5 Interleaved to web form applications in ASP.NET projects
- Download Interleaved 2 of 5 Control and unzip. Add Avapose.linearbarcode.aspnet.dll to your project;
(Do not copy the DLL to the bin directory, Visual Studio will do so automatically) - Open your Visual Studio, right click on the "Toolbox", and select "Choose Item";
- Click "browse" in the ".NET Framework Component" tab, find Avapose.linearbarcode.aspnet.dll, and click "OK". You will find LinearWebControl in the Toolbox;
- Go to "Barcode" folder in the trial package, copy files "linear.aspx" and "linear.aspx.cs" to the project where aspx barcodes are generated;
- Drag and drop the LinearWebControl to your aspx page. Switch to "Design" part, right click on the symbol, select "properties", change barcode type to Interleaved 2 of 5, and debug it.
Add Interleaved 2 of 5 generation capability to IIS for ASP.NET web applications
- Download Barcode Generator for ASP.NET and unzip;
- Create file Directory barcode in Internet Information Services (IIS);
- Restart IIS, and navigate to
http://localhost/barcode/linear.aspx?barcode-data=123456&linear-barcode=18; - Now a Interleaved 2 of 5 is generated, you can change barcode with Interleaved 2 of 5 property below;
- To add the created barcode images in html or aspx pages, simply insert the following image tag into your web pages:

Generate and create barcode 2 of 5 Interleaved in an image in ASP.NET in C# and VB.NET
Add ASP.NET Barcode Class Library to your project reference:
- Download Avapose ASP.NET barcode trial and unzip;
- Add Avapose.linearbarcode.aspnet.dll to your project. Do not copy the DLL to the bin directory, Visual Studio will do so automatically;
- Open your Visual Studio. In the "Solution Explorer", add Avapose.linearbarcode.aspnet.dll to your reference.
- Go to "Barcode" folder in the trial package, copy files "linear.aspx" and "linear.aspx.cs", to the project where aspx barcodes are generated;
- Right click on the "Default.aspx" in "Solution Explorer" and select "View Code";
- Copy those following sample accordingly and debug it, you will find an Interleaved 2 of 5 generated in you ASP.NET projects.
C# code
using Avapose.linearbarcode;
Linear barcode = new Linear();
barcode.LinearBarcode = LinearBarcode.Interleaved2of5;
barcode.BarcodeData = "0123456789";
barcode.BarWidth_X = 2;
barcode.BarHeight_Y = 50;
barcode.CheckSum = false;
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif;
barcode.DrawBarcodeImage("c:/interleaved2of5.gif");
VB code
Dim barcode As Avapose.linearbarcode.Linear = New Avapose.linearbarcode.Linear()
barcode.LinearBarcode = Avapose.linearbarcode.LinearBarcode.Interleaved2of5
barcode.BarcodeData = "0123456789"
barcode.BarWidth_X = 2
barcode.BarHeight_Y = 50
barcode.CheckSum = False
barcode.HoriBarRatio = 3
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif
barcode.DrawBarcodeImage("c:/interleaved2of5.gif")