ASP.NET Barcode Control for ITF14 Barcode Creation

- Easy to use barcode web server component for ASP.NET 2.0, 3.0, 3.5 and 4.0
- Support ITF14 as well as many common linear barcode standards in ASP.NET
- C#, VB.NET, Managed C++ and Borland Delphi for ASP.NET Support
ITF14 Barcode Generation in ASP.NET Application
- Managed code entirely written in C#
- Digital-signed assemblies for ASP.NET 2.0/3.5/4.0
- Easily integrate into VB.NET, C#, Managed C++ and Borland Delphi for ASP.NET
- Generate ITF-14 in console applications and class library for ASP.NET
- Allow ITF-14 saved as an image such as gif, tiff, bmp, png and jpeg files
- Automatically calculate checksum character for ITF-14
- Easy to generate the bearer bar with flexible bearer bar options
- Flexible to change barcode parameters in ASP.NET web applications
Avapose ITF-14 Barcode SDK for ASP.NET is easy to add ITF-14 features into ASP.NET web applications. It is easy to generate barcodes in ASP.NET using drag-and-drop method as well as class library through .NET languages in Visual Studio. Besides, developers can generate dynamic ITF-14 in html or aspx pages using IIS through URL.
ITF-14 Barcode Library 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 Generator Component - ITF14 Barcode Specifications
ITF-14 is a 14-digit long barcode symbology used to create the shipping container symbol and mark cartons and palettes that are including goods with an EAN/UPC code. ITF-14 is often surrounded by bearer bar to enhance the readability and equalize the pressure exerted by the printing plate.
Valid encoded data for ITF-14 in ASP.NET:
- Digital characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Barcode Writer for ASP.NET Applications - ITF-14 Barcode Generation
Requirements:
Before you generate IFT-14 in ASP.NET, you should install:
- Windows XP, Windows Vista and Windows 7
- Microsoft .NET Framework (any version)
- Microsoft Visual Studio .NET (any version)
- Microsoft Internet Information Service (IIS)
- Avapose.ITF-14 Generator for ASP.NET
Drag and drop ITF-14 barcode image to web forms applications in ASP.NET projects
- Add Avapose.linearbarcode.aspnet.dll to your project;
(Do not copies 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. Change barcode type to ITF-14 through properties window.
- Debug it, you will find ITF-14 barcode image generated in your aspx pages.
Add ITF14 barcode generation functionality to IIS in ASP.NET 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=0123456789123&linear-barcode=25; - Now a ITF-14 is generated, you can change barcode with ITF-14 property below;
- To add the created barcode images in html or aspx pages, simply insert the following image tag into your web pages:

Generate ITF14 barcode image in ASP.NET projects using 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 ITF-14 generated in you ASP.NET projects.
C# code
using Avapose.linearbarcode;
Linear barcode = new Linear();
barcode.LinearBarcode = LinearBarcode.Itf_14;
barcode.BarcodeData = "0123456789123";
barcode.BarWidth_X = 2;
barcode.BarHeight_Y = 50;
barcode.HoriBearerBar = 1;
barcode.VertBearerBar = 1;
barcode.CheckSumInText = true;
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif;
barcode.DrawBarcodeImage("c:/ITF-14.gif");
VB code
Dim barcode As Avapose.linearbarcode.Linear = New Avapose.linearbarcode.Linear()
barcode.LinearBarcode = Avapose.linearbarcode.LinearBarcode.Itf_14
barcode.BarcodeData = "0123456789123"
barcode.BarWidth_X = 2
barcode.BarHeight_Y = 50
barcode.HoriBearerBar = 1;
barcode.VertBearerBar = 1;
barcode.CheckSumInText = true;
barcode.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif
barcode.DrawBarcodeImage("c:/Itf-14.gif")