ASP.NET Barcode Generator - Generating 1D & 2D Barcodes in ASP.NET website.
This article describes how to use Barcode for .NET
library to generate barcode images in your ASP.NET website, ASP.NET web service.
ASP.NET Barcode Generator Introduction
BarcodeLib Barcode for .NET is the most flexible and powerful ASP.NET Bar Code generator.
Download free evaluation version
ASP.NET Barcode Generator - Supporting Symbologies
- ASP.NET Barcode Generates 1D (Linear) Barcode Symbologies
- ASP.NET Barcode Generates 2D (Matrix) Barcode Symbologies.
ASP.NET Barcode - Project Setup
- Add trial version or production version of BarcodeLib.Barcode.dll to your asp.net website reference.
ASP.NET Barcode - Barcode Generation without Web Controller
- Copy folder barcode from your downloaded package, to your IIS folder, e.g. C:\Inetpub.
- Create a new virtual directory, named barcode.
- Restart IIS.
- Test your installation, goto http://YourDomain:port/barcode/linear.aspx?Type=CODE39&Data=12345678
- To create barcode image in your ASP.NET application, you can pass the url to IMG tag src value.
For example, <img src="http://YourDomain:port/barcode/linear.aspx?Type=CODE39&Data=12345678" />
ASP.NET Barcode - Barcodes Generation through ASP.NET Web Controller
- Integrate Barcode Controller to your ASP.NET project.
- Copy BarcodeLib.Barcode.dll to the folder bin of your web application the barcodes are needed for.
- Copy linear.aspx file to your web application.
- Add barcode library to your Visual Studio Toolbox.
- Open Toolbox in Visual Studio. Click menu View, and check submenu Toolbox.
- Right click Toolbox, click menu Choose Items...
- Goto .NET Framework Components tab.
- Check component LinearWebForm, and its namespace is BarcodeLib.Barcode.Linear
- If no component found, click Browse... button and select BarcodeLib.Barcode.dll file.
- Now you can see the component displayed on Toolbox. You can drag LinearWebForm on your aspx page, change barcode setting through properties window.
Other Related Articles