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
How to Generate Micro QR Code in ASP.NET Library
Micro QR Code is a variant of matrix symbology QR Code 2005 with less modules and smaller symbol sizes, which enables data to be represented in a small QR Code symbol, particularly suited to direct marking on parts and components, and to applications where the space available for the symbol is severely restricted.
BizCode Generator for ASP.NET is a collection of library that supports the generating and customizing of Micro QR Code barcode in ASP.NET web applications, web pages and web services. The class library integrates well with Microsoft Visual Studio, C#.NET, VB.NET and Internet Information Service (IIS).
A complete set of barcode encoding and printing features are provided, supporting background color, bar color, rotation angle, x-dimension, captions, and resolution customization. All generated Micro QR Code are compatible with the latest ISO Standards.
Micro QR Code Generator for ASP.NET Features
Encodable Characters Micro QR Code Generator support to encode:
- Numeric characters
- Alphanumeric data
- Byte characters
- Kanji characters
Barcode Specification Compatible with QR Code barcode specification in ISO / IEC 18004 (2nd edition 2006-09-01)
Quick IntegrationEasy to integrate advanced Micro QR Code generating features into ASP.NET class, ASP.NET Web applications and Internet Information Service
Full Customization Options Multiple barcode setting options for you to select, including module width, image width, color, rotation, resolution, text, etc.
Image or GraphicsGenerate and print QR Code images in Png, Jpeg/Jpg, Gif, Tiff, Bmp formats, in stream object, in graphics object
For all Printers Resolution customizable with DPI setting to print high-quality barcodes with all printers, and no special printers or hardware is required
Micro QR Code Generator for ASP.NET Requirements
Windows OS
- Microsoft Windows 7
- Windows Server 2008
- Windows Vista
- Windows Server 2003
- Windows XP
Development Environments
- .NET 2.0/3.0/4.0
- C#, VB.NET, Managed C++, Borland Delphi for.NET
- Visual Studio 2005/2008/2010
- Internet Information Service (IIS)
Install Micro QR Code Generator for ASP.NET
  1. Download BizCode Generator for ASP.NET and unzip;
  2. Add reference: Add "BusinessRefinery.Barcode.Web.dll" to your ASP.NET project reference;
  3. Add to Toolbox: To add Barcode Control to your ASP.NET Web Forms toolbox;
How to Drag & Drop Barcode Control into ASP.NET projects?
  1. Install ASP.NET Barcode Control;
  2. Add ASP.NET Barcode Control onto your .NET Visual Studio Toolbox;
  3. Copy "microqrcode.aspx" and "microqrcode.aspx.cs" to the folder where your aspx pages are generating barcodes;
  4. Drag and drop the web control into the Forms;
  5. Run the website and you will see a barcode image generated;
  6. More Micro QR Code Setting see below.
How to Generate Micro QR Code with C#, VB.NET Class in ASP.NET?
Copy those following sample code to your ASP.NET Project:
using BusinessRefinery.Barcode;

MicroQRCode barcode = new MicroQRCode();
barcode.Code = "MicroQRCode";
barcode.Resolution = 104;
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/microqrcode-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.MicroQRCode = 
New BusinessRefinery.Barcode.MicroQRCode()
barcode.Code = "MicroQRCode"
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/microqrcode-vb-net.gif")
How to Create Your Own Micro QR Code in IIS?
  1. Download BizCode Generator for ASP.NET and unzip;
  2. Copy the whole barcode fold and contents into IIS and create a new virtual directory called "br_barcode";
  3. Restart IIS, navigate to http://localhost/br_barcode/microqrcode.aspx?code=MicroQRCode
  4. Add an image tag <img> into the web page to create Micro QR Code barcode image in html or aspx pages, e.g. <img src="http://localhost/br_barcode/microqrcode.aspx?code=MicroQRCode"/>.