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
Barcode in ASP.NET > C# Barcode
How to Generate Barcodes in ASP.NET using C#
BizCode Generator for ASP.NET performs as a dynamic DLL class library that is easily installed in Visual Studio as a common control to generate barcodes in Web Forms using drag-and-drop implementation or C#/VB coding. Besides, developers may also generate barcodes in Web pages using IIS through URL.
ASP.NET Barcode Generator Requirements
Windows OS
Can be used in Microsoft Windows 7, Windows Vista, Windows XP, Windows Server 2008, Windows Server 2005, etc
.NET Technology Support
Fully written in managed C# in .NET 2.0, 3.0, 3.5 and 4.0, entirely integrate into ASP.NET Web Forms, Crystal Reports, RDLC, and Reporting Service
Test Environment of Barcode Generator for ASP.NET
Test Environment
Test this barcode DLL in these environments which have Microsoft Windows XP, Microsoft Visual Studio 2005 and Visual C#.NET installed
Test Product
BizCode Generator for ASP.NET
Generate Barcodes by Adding Reference to Project in Visual C#.NET
  1. Unzip BizCode Generator for ASP.NET trial;
  2. Copy BusinessRefinery.Barcode.Web.dll to your ASP.NET project folder;
    (Do not copy dll to .NET bin directory; Visual Studio build tools will do it for you.)
  3. Open your Microsoft Visual Studio and create a ASP.NET project named "BR-Barcode";
  4. Click "Project" and choose "Add Reference";
  5. Add BusinessRefinery.Barcode.Web.dll to project;
  6. In trial package, copy "qrcode.aspx" and "qrcode.aspx.cs" to the folder where your aspx pages are generating barcodes;
  7. Using C# coding to generate barcodes in ASP.NET
Generate Barcodes by Using Barcode Control in Visual C#
  1. Unzip BizCode Generator for ASP.NET trial;
  2. Open your Microsoft Visual Studio and create a ASP.NET project named "BR-Barcode";
  3. Add ASP.NET Barcode Generator Control to your Visual Studio ToolBox;
  4. Copy "qrcode.aspx" and "qrcode.aspx.cs" to the folder where your aspx pages are generating barcodes;
  5. Drag and drop "WebQRCode" to your ASPX web forms;
  6. Run the website to view the barcodes generated;
  7. Right click on the "Default.aspx", and select View Code;
  8. Using C# code accordingly to change barcode types and other properties.
Copy the Following C# Coding in ASP.NET to Generate Barcodes
using BusinessRefinery.Barcode;
QRCode barcode = new QRCode();
barcode.Code = "QR Code";
Barcode.DataMode = QRCodeDataMode.AlphaNumeric;
barcode.ProcessTilde= true;
barcode.Resolution = 104;
barcode.Rotate = Rotate.Rotate180;
barcode.BottomMargin = 7;
barcode.TopMargin = 7;
barcode.LeftMargin = 5;
barcode.RightMargin = 5;
barcode.DisplayText = true;
barcode.TextFont = new Font("Arial", 11.0f, FontStyle.Bold);
barcode.TextMargin = 10;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/qr-code-csharp.gif")