KA.Barcode for ASP.NET
How to Generate ITF-14 in ASP.NET Application
How to generate ITF-14 barcode symbologies in ASP.NET web applications using Visual C#, VB.NET class library
  • Simple to drag & drop ITF-14 generating component onto ASP.NET Web forms
  • Easy to integrate ITF-14 control into Microsoft Visual Studio and IIS
  • Provide 100% source code for C#.NET and VB.NET
  • Compatible with GS1 system of standards for ITF-14 generation
  • Automatically add a checksum digit for ITF-14 barcodes
  • Multiple image formats support, including GIF, BMP, PNG, JPEG, TIFF, etc
  • Compatible with Internet Explorer, FireFox, Chrome, Safari and other web browsers
ASP.NET ITF-14 Barcode Control is a lightweight barcode creating component for generating and streaming ITF-14 barcodes in ASP.NET Web applications and Internet Information Services. Equipped with 50+ barcode options, users may print and output high-quality ITF-14 barcodes with dynamic data and customized size & image.
ITF-14 Overview in ASP.NET Generator
ITF-14 is also named as ITF14, UPC Case Code, EAN/UCC-14, EAN-14, UCC-14, DUN-14, GTIN-14, UCC-12. It is the GS1 implementation of an Interleaved 2 of 5 barcode to encode a Global Trade Item Number.

ITF-14 Encodable Characters in ASP.NET Generator

  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
ITF-14 Generation in ASP.NET Web Control

How to Drag & Drop ITF-14 Control to ASP.NET Project

  1. 1.
    Copy "barcode.aspx" and " barcode.aspx.cs" to the target folder
  2. 2.
    Right-click in "Toolbox" and select "Choose Items..."
  3. 3.
    Click "Browse..." to locate and select "KeepAutomation.Barcode.Web.dll"
  4. 4.
    Drag and drop "BarCodeControl" from Visual Studio Toolbox into the web form and a ITF14 barcode is created
  5. 5.
    Change barcode symbology to "ITF-14" and customize its properties in the "Properties" panel

How to Generate ITF-14 in C#, VB.NET Programming

It is easy to generate ITF-14 into ASP.NET web form / website using the C# or VB.NET sample code below.
using KeepAutomation.Barcode.Bean;

BarCode itf14 = new BarCode();
itf14.Symbology = KeepAutomation.Barcode.Symbology.ITF14;
itf14.CodeToEncode = "0123456789012";
itf14.X = 2;
itf14.generateBarcodeToImageFile("C://itf14-csharp.png");
Dim itf14 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode

itf14.Symbology = KeepAutomation.Barcode.Symbology.ITF14
itf14.CodeToEncode = "0123456789012"
itf14.X = 2
itf14.ImageFormat = System.Drawing.Imaging.ImageFormat.Gif()
itf14.generateBarcodeToImageFile("C://itf14-vb-net.gif")
Provided, and users can create QR Code for ASP.NET application as following steps. How to Drag & Drop QR Code Control to ASP.NET Project. ....
View How to generate barcode in C#.NET using ASP.NET? ....
How to Generate QR Code Image in VB.NET Projects. VB.NET source code to generate, print QR Code in different image formats using .NET Barcode...
Data; Byte data; Kanji characters. QR Code Data Encoding in KA ....
more>

How to Set Wide-Narrow-Ratio of ITF-14 in ASP.NET

.NET developers are entitled to set wide bar width to narrow bar width ratio of ITF-14 by setting "WideNarrowRatio".
itf14.WideNarrowRatio = 2.0f; 
itf14.WideNarrowRatio = 2.0f

How to Set Bearer Bar of ITF-14 in ASP.NET

With .NET barcode generator for ASP.NET, developer could change left and right bearer bars, top and bottom bearer bars by changing "BearerBarLeft" and "BeareerBarTop" properties using C# or VB codes.
itf14.BearerBarLeft = 2;
itf14.BearerBarTop = 2;
itf14.BearerBarLeft = 2
itf14.BearerBarTop = 2
How to Generate ITF-14 in Microsoft IIS Through URL
  1. 1.
    Unzip the trial package, copy "barcode" folder and its contents to your IIS, and create a new virtual directory "barcode"
  2. 2.
    Restart IIS, and navigate to "http://localhost/barcode/barcode.aspx?code-to-encode=0123456789012&symbology=24"
  3. 3.
    Now an ITF-14 is generated, you can change barcode properties in the url above, view http parameters here
  4. 4.
    To add the created barcode images in html or aspx pages, insert the following image tag into your web pages. <img src="http://localhost/barcode/barcode.aspx?code-to-encode=0123456789012&symbology=24"/>