GS1-128 Generator for ASP.NET Applications

- Mature EAN/UCC-128 barcode generator component for ASP.NET projects
- Support EAN-128 barcode generation in SSRS, Crystal Reports and RDLC in ASP.NET
- Generate dynamic EAN/UCC-128 barcode images in ASP.NET web applications
GS1-128 Barcode Creator Control for ASP.NET Applications
- Functional Software Development Kit (SDK) developed specially for ASP.NET Web Server
- Integrate complete GS1-128 generating capabilities into types of web projects
- Draw graphic objects with the highest possible image resolution
- Encode GS1-128 barcodes using BMP, GIF, JPEG, PNG, or TIFF files
- ASP.NET Web Site, .NET Web Service, and more types of projects in ASP.NET are supported
- Easy to encode GS1 Application Identifiers (AI) in GS1-128
- The generated GS1-128 iamge is 100% compatible with GS1 barcode standards
- Royalty-free license are provided after the purchase of this .NET Control
GS1-128 ASP.NET Barcode Generator DLL, written entirely in managed C#, is the most flexible and robust .NET SDK for generating GS1-128 in ASP.NET. The lightweight and compact web control could be installed in .NET IDEs as well as Microsoft IIS. It brings complete GS1-128 encoding and generation capabilities to your web projects in ASP.NET.
GS1-128 ASP.NET Barcode Generator integrates with the following types of projects:
- .NET Web Service Project (runtime support)
- ASP.NET Web Site (design-time and runtime support)
- Console Application (runtime support)
- Class Library (runtime support)
Barcode Maker Server Component for ASP.NET - GS1-128 Specification
GS1-128 is one of the GS1 barcodes that is used to encode shipping or product information for logistic systems. It was formerly known as UCC/EAN-128, and was developed to provide a worldwide barcode format and standard for data exchanging between companies. Note that GS1-128 is rather a barcode application standard than a symbology specification. GS1-128 application standard is built using Code 128 symbology specification.
ASP.NET GS1-128 Generator encodes:
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- Upper case letters (A - Z)
- Lower case letters (a - z)
- Special characters: - (Dash), $ (Dollar), % (Percentage), (Space), . (Point), / (Slash), + (Plus)
GS1-128 Barcode Generator SDK for ASP.NET - GS1-128 Generation
Install and register Barcode Web Server Control to ASP.NET Projects
Before generating GS1-128 in ASP.NET, you need to install:
- Windows 7, Windows Vista, or Windows XP
- .NET 2.0, 3.0 or greater version
- Microsoft Visual Studio 2005/2008/2010 (Not necessary if barcode is generated using IIS only)
- Microsoft Internet Information Service (IIS)
- Avapose.Barcode for ASP.NET
Add GS1-128 barcode creation functionality to IIS for ASP.NET web applications
- Create file Directory barcode in Internet Information Services (IIS);
- Browse Barcode folder in the package, and copy files linear.aspx & linear.aspx.cs to the project folder;
- Restart IIS, and navigate to http://YourDomain:Port/barcode/linear.aspx?BarcodeData=01234567&LinearBarcode=17;
- Now a GS1-128 is generated, you can make further customization to fit your specified requirement;
- To add the created barcode images in html or aspx pages, simply insert the following image tag into your web pages: <img src= http://YourDomain:Port/barcode/linear.aspx?BarcodeData=01234567&LinearBarcode=17">
Drag and Drop GS1-128 barcode to web forms applications in ASP.NET projects
- Create a new project in your Visual Studio;
- Copy Avapose.linearbarcode.aspnet.dll to your project folder; (You need not to copy .dll to .NET bin directory, because Visual Studio will do so)
- Add LinearWebControl to your Visual Studio Toolbox;
- Browse Barcode folder in the package, and copy files linear.aspx &linear.aspx.cs to the project folder;
- Find Component LinearWebControl in the Toolbox, then drag and drop it to your forms;
- Activate the Property Window and change Barcode Type to Ean128;
- Customize the generated barcode accordingly.
Generate GS1-128 barcode in image from a string in ASP.NET projects
- Create a new project in you Visual Studio;
- Add Avapose.linearbarcode.aspnet.dll to the project reference;
- Browse Barcode folder in the package, and copy files linear.aspx &linear.aspx.cs to the project folder;
- Copy the following sample code to the project:
C# code
using Avapose.linearbarcode
Linear Ean128 = new Linear();
Ean128.LinearBarcode = LinearBarcode.Ean128
Ean128.BarcodeData = "01234567";
Ean128.BarcodeWidth = 175;
Ean128.BarcodeHeight = 50;
Ean128.ResizeBarcode = true;
Ean128.DrawBarcodeImage("c:\\ ean128.gif");
VB code
Dim Ean128 As Avapose.linearbarcode.Linear = New Avapose.linearbarcode.Linear()
Ean128.LinearBarcode = Avapose.linearbarcode.LinearBarcode.Ean128
Ean128.BarcodeData = "01234567"
Ean128.BarcodeWidth = 175
Ean128.BarcodeHeight = 50
Ean128.ResizeBarcode = True
Ean128.DrawBarcodeImage("c:/ean128.gif")