BizCode Barcode Generator for ASP.NET
The most professional barcode solutions for Microsoft ASP.NET
Quick Overviews
  • Barcode creating class library
  • Support ASP.NET IDEs & IIS
  • Easy to use & integrate
  • Dynamic barcodes support
  • High-usability controls provided
How to Generate GS1 DataBar in ASP.NET Library
GS1 DataBar is a GS1 specified linear barcode symbology family used in the GS1 DataBar Coupon. It was formerly known as RSS barcode. GS1 DataBar symbology includes GS1 DataBar-14, GS1 DataBar-14 Truncated, GS1 DataBar-14 Stacked, GS1 DataBar-14 Stacked Omnidirectional, GS1 DataBar Limited, GS1 DataBar Expanded, and GS1 DataBar Expanded Stacked.
ASP.NET Barcode GS1 DataBar Generator is an ASP.NET web server control that enables developers to add GS1 DataBar barcodes generation features into your ASP.NET Web applications or ASP.NET Web pages.
ASP.NET Barcode GS1 DataBar Generator provides all barcode parameters to adjust GS1 DataBar barcodes, such as module width & height, resolution, rotation, code text, font style, etc. Specified checksum could be added to specified GS1 DataBar version.
GS1 DataBar Generator for ASP.NET Features
Supported Subsets BizCode Generator for ASP.NET supports:
-GS1 DataBar-14
-GS1 DataBar-14 Truncated
-GS1 DataBar-14 Stacked
-GS1 DataBar-14 Stacked Omnidirectional
-GS1 DataBar Limited
-GS1 DataBar Expanded
-GS1 DataBar Expanded Stacked
Quick IntegrationEasy to add complete GS1 DataBar generation capabilities into ASP.NET class, ASP.NET Web applications and Internet Information Service
Application Identifiers Easily encode GS1 Application Identifiers with GS1 DataBar barcode symbol
Full Barcode Options Multiple barcode setting options for you to select, including module width, image width, color, rotation, resolution, text, etc.
High QualityDirectly draw high quality GS1 DataBar barcodes images or graphics objects in web applications or web pages
For all Printers High quality barcode images may be printed with any printers, including those low-resolution printers
GS1 DataBar Generator for ASP.NET Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- C#, VB.NET, Managed C++, Borland Delphi for.NET
- Visual Studio 2005/2008/2010
- Internet Information Service (IIS)
Install GS1 DataBar Generator for ASP.NET
  1. Download BizCode Generator for ASP.NET and unzip;
  2. Add reference: Add "BusinessRefinery.Barcode.Web.dll" to your ASP.NET project reference;
  3. Add to Toolbox: To add Barcode Control to your ASP.NET Web Forms toolbox;
How to Drag & Drop Barcode Control into ASP.NET projects?
  1. Install ASP.NET Barcode Control;
  2. Add ASP.NET Barcode Control onto your .NET Visual Studio Toolbox;
  3. Copy "linear.aspx" and "linear.aspx.cs" to the folder where your aspx pages are generating barcodes;
  4. Drag and drop the WebLinearBarcode control into the Forms;
  5. Run the website and you will see a barcode image generated;
  6. More GS1 DataBar Setting see below.
How to Generate GS1 DataBar with C#, VB.NET Class in ASP.NET?
Copy those following sample code to your ASP.NET Project:
using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.RSS14;
barcode.Code = "(01)23456789";
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/databar-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.Linear = 
New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.RSS14
barcode.Code = "(01)23456789"
barcode.Resolution = 104
barcode.Rotate = BusinessRefinery.Barcode.Rotate.Rotate270
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/databar-vb-net.gif")
How to Create Your Own GS1 DataBar in IIS?
  1. Download BizCode Generator for ASP.NET and unzip;
  2. Copy the whole barcode fold and contents into IIS and create a new virtual directory called "br_barcode";
  3. Restart IIS, navigate to http://localhost/br_barcode/linear.aspx?code=0123456789&symbology=46
  4. Add an image tag <img> into the web page to create GS1 DataBar barcode image in html or aspx pages, e.g. <img src="http://localhost/br_barcode/linear.aspx?code=0123456789&symbology=46"/>.