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 > VB.NET Barcode
How to Generate Barcodes in ASP.NET using VB.NET
BizCode Generator for ASP.NET is a high-quality and mature barcode control component that exclusively designed for ASP.NET Developers to generate barcodes in ASP.NET Web applications with great ease. Barcode generated in ASP.NET is in high flexibility by freely customizing barcode properties.
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 Basic.NET installed
Test Product
BizCode Generator for ASP.NET
Generate Barcodes by Adding Reference to Project in Visual Basic.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 "pdf417.aspx" and "pdf417.aspx.cs" to the folder where your aspx pages are generating barcodes;
  7. Using VB coding to generate barcodes in ASP.NET
Customize Barcodes by Using Barcode Control in Visual Basic
  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 "pdf417.aspx" and "pdf417.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 VB code accordingly to change barcode types and other properties.
Copy the Following VB Coding in ASP.NET to Generate Barcodes
Dim barcode As BusinessRefinery.Barcode.PDF417 = 
New BusinessRefinery.Barcode.PDF417()
barcode.Code = "0123456789"
barcode.DataMode = PDF417DataMode.Text
barcode.Code = "PDF417"
barcode.ECL = PDF417ECL.LEVEL_2
barcode.BarcodeUnit = BarcodeUnit.PIXEL
barcode.RowCount = 3
barcode.ColumnCount = 9
barcode.BarcodeHeight = 100
barcode.BarcodeWidth = 500
barcode.BottomMargin = 7
barcode.TopMargin = 7
barcode.LeftMargin = 5
barcode.RightMargin = 5
barcode.drawBarcode2SizeFile("c:/pdf-417-vb-net.gif")