ASP.NET UPC-A Barcode Generating Control


ASP.NET UPC-A Barcode Generating Control compiles UPC-A barcode generating & creating function into a single dll, which is used to encode, embed, or integrate upca barcode printing function into ASP.NET web templates using C# and VB.NET.
ASP.NET UPC-A Barcode Generator Control - Overview
UPC-A Barcode Generator component SDK for ASP.NET web application is a server-side control for ASP.NET Web Applications. This barcode generator is a single file that may be redistributed in your ASP.NET applications without any license keys or activation.
Related barcode generating solutions for creating UPC-A image:
Features - ASP.NET UPC-A Barcode Generator Control
ASP.NET UPC A Barcode Generator Technologies
- UPC-A Barcode Generator for ASP.NET is completely developed in .NET 2.0, and is compatible with the .NET 2.0 and later versions
- This ASP.NET UPC-A barcode generator can be easily integrated into ASP.NET web project by adding reference
- Using this UPC-A barcoding control, users can generate & create UPC-A barcode images in ASP.NET web applications, Console application & IIS
- Generated UPC-A barcode images are compatible with most barcode printers
Customize UPC-A Barcode Images Using ASP.NET Barcode Generating DLL
- Generate & output created UPC-A barcode images to JPEG, GIF, TIFF, BMP, and PNG image files in ASP.NET
- Rotate generated UPC-A barcode images to 0, 90, 180, or 270 degrees in ASP.NET web applications
- Generate UPC-A barcode images with user-defined printing resolutions in ASP.NET web site
- Able to enables or disables the human-readable text of created UPC-A barcode images in ASP.NET web services
- Free to resize generated UPC-A barcode image size in ASP.NET web application, like bar width, margins & barcode symbol size
Developer Guide - ASP.NET UPC-A Barcoding Library
Guide to Generate & Create UPC-A Barcode in ASP.NET Web Controller
- Add KeepDynamic.BarCode.AspNet.dll from the file Library to your ASP.NET project
- Add KeepDynamic.BarCode.AspNet.dll to Visual Studio Toolbox (After which, you will see four new items, that is, BarCodeControl, QRCodeControl, DataMatrixControl & PDF417Control)
- Copy "linear.aspx", "linear.aspx.cs" from barcode folder in Documentation to your ASP.NET project
- Drag & drop BarCodeControl from the Toolbox to your ASP.NET project and a barcode image will be generated
- Click generated barcode image, change the value of SymbologyType to UPCA and adjust the value of CodeText to a 11-digit data in the Properties window
- Run the ASP.NET project to view generated UPC-A barcode images
Guide to Generate UPC-A Barcode in ASP.NET Class Applications
- Integrate KeepDynamic.BarCode.AspNet.dll from the file Library to your ASP.NET project by adding reference
- Copy following C# or VB.NET class code to generate & print UPC-A barcode images in ASP.NET web applications.
C# code for ASP.NET UPC-A barcode generation
// generate linear barcode object
BarCode barcode = new BarCode();
// Set barcode type to upca
barcode.SymbologyType = SymbologyType.UPCA;
// Enter a 11-digit data string
barcode.CodeText = "12345678912";
// set size-related settings of UPC-A barcode image
// Set bar width of UPCA
barcode.X = 2;
// set EAN13 barcode image
barcode.BarCodeWidth = 250;
barcode.BarCodeHeight = 90;
// save generated barcode images to png image file using C#
barcode.drawBarcode("C://kdupca.png");
VB.NET code for ASP.NET UPC-A barcode generation
' generate linear barcode object
Dim barcode As New BarCode()
' Set barcode type to upca
barcode.SymbologyType = SymbologyType.UPCA
' Enter a 11-digit data string
barcode.CodeText = "12345678912"
' set size-related settings of UPC-A barcode image
' Set bar width of UPCA
barcode.X = 2
' set EAN13 barcode image
barcode.BarCodeWidth = 250
barcode.BarCodeHeight = 90
' save generated barcode images to png image file using VB.NET
barcode.drawBarcode("C://kdupca.png")
Guide to Create & Draw UPC-A Barcode in IIS using ASP.NET Barcoding Control
- Download & unzip the trial package. Find folder barcode in the folder Documentation
- Copy above folder barcode to your IIS project, eg:C:\interpub
- Create a new virtual directory in your IIS named "barcode", and connect it to the above barcode folder in the C:\interpub
- Restart your Microsoft IIS and navigate to:
http://YourDomain:Port/barcode/linear.aspx?symbology-type=36&code-text=36202102360&x=1&left-margin=10&right-margin=10 - You can also use the following image tag to generate a UPC-A barcode on your html or aspx pages.
<img src="http://YourDomain:Port/barcode/linear.aspx?symbology-type=36&code-text=36202102360&x=1&left-margin=10&right-margin=10" />
Note: X refers to bar width and code-text refers to encodable characters.
How to Generate other Linear & 2D Barcode Types using ASP.NET Barcode Generating SDK
- 2D Barcodes: QR Code in ASP.NET, PDF417 in ASP.NET and Data Matrix in ASP.NET.
- Alphanumeric Barcodes: Code 39 in ASP.NET, Code 93 in ASP.NET, Code 128 in ASP.NET and GS1-128 (UCC/EAN-128) in ASP.NET.
- UPC / EAN Barcodes: EAN 13 in ASP.NET, EAN 8 in ASP.NET, UPC A in ASP.NET, UPC E in ASP.NET, ISBN in ASP.NET and ISSN in ASP.NET.
- Numeric Barcodes: Code 11 in ASP.NET, Codabar in ASP.NET and MSI Plessey in ASP.NET.
- Code 2 of 5 based Barcodes: Standard 2 of 5 in ASP.NET, Interleaved 2 of 5 in ASP.NET and ITF14 in ASP.NET.
- Postal Barcodes: Intelligent Mail Barcode in ASP.NET (USPS OneCode Solution), USPS POSTNET in ASP.NET, USPS PLANET in ASP.NET, Identcode in ASP.NET, Leitcode in ASP.NET and RM4SCC in ASP.NET.