Home  >  ASP.NET Barcode Generator Components  >  How to Print Barcode in ASP.NET  >  ASP.NET GS1-128(UCC/EAN-128) Barcoding Library
GS1-128(UCC/EAN-128) ASP.NET Barcode Generator SDK
GS1-128(UCC/EAN-128) ASP.NET Barcode Generator SDK is completely developed in .NET framework. It can generate, create, or display GS1-128 barcodes for ASP.NET web projects using C# and VB.NET class codes.
Overview - GS1-128(UCC/EAN-128) ASP.NET Barcode Generator SDK
GS1-128 is an alphanumeric and Code 128 based barcode symbology. It is used to encode shipping/product information. GS1-128 barcode is also known as EAN-128, UCC-128, USS-128, GS1 128, UCC.EAN-128, GTIN-128, UCC-12, EAN/UCC-13, EAN/UCC-14. This GS1-128(UCC/EAN-128) ASP.NET Barcode generator, provided by KeepDynamic.com, is a professional & mature UCC/EAN-128 barcode image creator. It helps users create GS1-128 in ASP.NET projects, Console applications & IIS.
Related barcode generating controls for generating GS1-128(UCC/EAN-128) image in .NET class applications:
Benefits - GS1-128(UCC/EAN-128) ASP.NET Barcode Generator SDK

GS1-128 (UCC/EAN-128) ASP.NET Barcode Generator Technology

ASP.NET GS1-128 (UCC/EAN-128)Barcode Image Generation

This ASP.NET GS1-128 (UCC/EAN-128) barcode generating control offers many options for users to adjust properties of created GS1-128 (UCC/EAN-128) barcode images. For example:
View more about GS1-128/EAN-128 Barcode Properties of ASP.NET Barcode Generator Library
Tutorial for GS1-128 (UCC/EAN-128) Barcode Generation in ASP.NET Web Application

GS1-128 (UCC/EAN-128) Barcode Generation in ASP.NET Web Controller

  1. Add KeepDynamic.BarCode.AspNet.dll from the file Library to your ASP.NET project and Visual Studio Toolbox
  2. Copy "linear.aspx", "linear.aspx.cs" from barcode folder in Documentation to your ASP.NET project
  3. Drag & drop BarCodeControl from the Toolbox to your ASP.NET project and a barcode image will be generated
  4. Click generated barcode image, change the value of SymbologyType to EAN128 and adjust the value of CodeText to the format of AI + data-to-encode in the Properties window
  5. Run the ASP.NET project to generate GS1-128 barcode image

GS1-128 (UCC/EAN-128) Barcode Generation in ASP.NET Class Applications

  1. Integrate KeepDynamic.BarCode.AspNet.dll from the file Library to your ASP.NET project by adding reference
  2. Copy following C# or VB.NET class code to generate Code 39 barcode images in ASP.NET web applications.
Use free sample C# code to generate GS1-128 (UCC/EAN-128) barcode images in ASP.NET web class
// generate linear barcode object 
BarCode barcode = new BarCode();

// Set barcode type to EAN128
barcode.SymbologyType = SymbologyType.EAN128;

// Allow to encode tilde
barcode.ProcessTilde = true;

// Enter encodable data string, which equals to encode data as (12)123456
barcode.CodeText = "~ai212123456";

// set EAN128 barcode image settings
// Set bar width of EAN128
barcode.X = 2;

// set EAN128 barcode image
barcode.BarCodeWidth = 250;
barcode.BarCodeHeight = 90;

// save generated barcode images to png image file using C#
barcode.drawBarcode("C://kdean128.png");
Use free sample VB.NET code to create GS1-128 (UCC/EAN-128) barcode images in ASP.NET web class
' generate linear barcode object 
Dim barcode As New BarCode()

' Set barcode type to EAN128
barcode.SymbologyType = SymbologyType.EAN128

' Allow to encode tilde
barcode.ProcessTilde = True

' Enter encodable data string, which equals to encode data as (12)123456
barcode.CodeText = "~ai212123456"

' set EAN128 barcode image settings
' Set bar width of EAN128
barcode.X = 2

' set EAN128 barcode image
barcode.BarCodeWidth = 250
barcode.BarCodeHeight = 90

' save generated barcode images to png image file using VB.NET
barcode.drawBarcode("C://kdean128.png")

GS1-128 (UCC/EAN-128) Barcode Generation in IIS

  1. Locate folder barcode in the folder Documentation of downloaded trial package
  2. Copy cotent of folder barcode to your IIS project, eg:C:\interpub
  3. Create a new virtual directory in your IIS named "barcode", and connect it to the above barcode folder in the C:\interpub
  4. Restart your Microsoft IIS and navigate to:
    http://YourDomain:Port/barcode/linear.aspx?symbology-type=17&code-text=(01)2658742302&x=1&left-margin=10&right-margin=10
  5. Use following image tag to generate a GS1-128 barcode on your html or aspx pages.
    <img src="http://YourDomain:Port/barcode/linear.aspx?symbology-type=17&code-text=(01)2658742302&x=1&left-margin=10&right-margin=10" />
Note: X refers to bar width and code-text refers to encodable characters.
ASP.NET GS1-128 (UCC/EAN-128) Barcode Generator Supported Barcode Types