|
Home >
Barcode Components >
ASP.NET Barcode Generator for Data Matrix, PDF 417, QR Code, GS1 DataBar, Code 128, & Code 39
.NET Barcode for ASP.NET
ASP.NET Barcode Generation in ASP.NET Web Applications
.NET Barcode for ASP.NET is a ASP.NET Web Form Barcode Generation Package which supports 30+ linear & 2D barcode generation in all ASP.NET development environment,
including :
- ASP.NET Class (C#, VB.NET, J#)
- ASP.NET Web Applications
- ASP.NET Web Service
- .NET Console Applications
|
ASP.NET Barcode Package Overview |
-
Linear Barcodes
-
GS1 DataBar
- GS1 DataBar [formerly Reduced Space Symbology (RSS)]
-
PDF-417
- PDF417 with EC levels 1 to 8, text and binary encoding.
-
Data Matrix
- Data Matrix with ECC200, ASCII, text, C40 and Base256 encoding, Extended Channel Interpretation and Structured append.
-
QR-Code
- QRCode with structured append, UPS encoding and mode 2-6 support.
|
ASP.NET Web Form Barcode Generator Features and Benefits |
Royalty free with Developer License purchased.
.NET class libraries (in C#) are provided for integration in ASP.NET web applications.
High quality images with GIF, PNG, JPEG, & BMP support without any distortion.
Automatic checksum digit calculations can be enabled and disabled for many linear symbologies.
.NET 2.0, 3.0, 3.5 and above is supported.
Orientation may be set to 0, 90, 180, or 270 degrees.
Fully customizable barcode sizes. Allow to change barcode X, Y dimensions, wide to narrow ratio,
barcode image width & height, image left, right, top, bottom margins.
Orientation may be set to 0, 90, 180, or 270 degrees.
Text style options allow the human readable characters to be displayed or hidden.
Supplemtns 2 & 5 digits are supports for UPC-A, UPC-E, EAN 8, EAN 13, ISBN, ISSN.
USPS Intelligent Mail Barcode (Onecode) is supported as well as POSTNET, PLANET, RM4SCC, EAN128.
GS1 Package supports GS1-128 (EAN-128), ITF-14, DataBar, Data Matrix, & QR-Code.
Bearer bars for ITF-14 may be displayed or hidden.
Source code is provided for all .NET Class, ASP.NET Web Form applications (in C# 2005).
|
ASP.NET Barcode Generator - Download |
|
ASP.NET Barcode Generator - License & Price |
- .NET Barcode for ASP.NET - Linear Barcode - 1 Developer Server License - USD 299
- .NET Barcode for ASP.NET - Linear Barcode - 5 Developer Server License - USD 799
- .NET Barcode for ASP.NET - Linear Barcode - Corporate Developer Server License - USD 1299
- .NET Barcode for ASP.NET - Linear + 2D Barcode - 1 Developer Server License - USD 459
- .NET Barcode for ASP.NET - Linear + 2D Barcode - 5 Developer Server License - USD 1259
- .NET Barcode for ASP.NET - Linear + 2D Barcode - Corporate Developer Server License - USD 2059
1. How to generate barcodes in C# Class?
using BusinessRefinery.Barcode;
// construct a linear barcode object
Linear barcode = new Linear();
// set linear barcode symbolgoy to code-128
barcode.Symbology = Symbology.CODE128;
// set code-128 code text to encode
barcode.Code = "9876543210";
//draw barcode and save into image file in gif format
barcode.drawBarcode("C://code-128-in-csharp.gif");
|
2. How to generate barcodes in VB.NET Class?
// construct a linear barcode object
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbolgoy to code-128
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE128
// set code-128 code text to encode
barcode.Code = "0123456789"
//draw barcode and save into image file in gif format
barcode.drawBarcode("C://code-128-in-vbnet.gif")
|
3. How to draw barcodes to image files (GIF, JPEG, BMP, PNG, & TIFF)?
using BusinessRefinery.Barcode;
Linear barcode = new Linear();
barcode.Symbology = BarcodeType.CODE128;
barcode.Code = "9876543210";
barcode.drawBarcode("C://code-128-in-csharp.gif");
You can draw other file formats, by change file types to .jpg, .bmp, .png, and .tif.
4. How to draw & print barcodes to .NET objects like Graphics, Stream, Bitmap?
using BusinessRefinery.Barcode;
Linear barcode = new Linear();
barcode.Symbology = BarcodeType.CODE128;
barcode.Code = "9876543210";
barcode.drawBarcode2Stream("Stream object");
Bitmap barcodeInBitmap = barcode.drawBarcode();
barcode.drawBarcodeOnGraphics("Graphics object");
5. How to create barcodes in .NET Windows Application using .NET Barcode Generator Windows Control Library?
-
add BusinessRefinery.Barcode.Win.dll to your .NET Windows Application project reference
-
add .NET Barcode Generator .NET Windows Control Library to .NET Visual Studio Toolbox
6. How to create barcodes in ASP.NET Web Application using ASP.NET Barcode Generator Web Control Library?
-
add BusinessRefinery.Barcode.Web.dll to your ASP.NET project reference
-
add ASP.NET Barcode Generator ASP.NET Web Control Library to .NET Visual Studio Toolbox
.NET Barcode Generator |
C# Barcode Generator |
ASP.NET Barcode Generator |
VB.NET Barcode Generator
|