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 PDF417 in ASP.NET Library
Micro PDF417 is a multi-row symbology that encodes a moderate amount of data within a compact symbol size. The data modes, error correction method, and symbol character sets of Micro PDF417 are almost the same as PDF417. However, the length of each pattern in MicroPDF417 is 10 units long rather than 17 units long. Besides, the row height in MicroPDF417 is as low as 2X.
ASP.NET Micro PDF-417 Generator is one part of BizCode Generator for ASP.NET that supports to generate, create Micro PDF-417 in ASP.NET Web forms, Web Server and Internet Information Service. It is compatible with Microsoft Visual Studio 2005/2008/2010, and supports C#, Visual Basic .NET.
ASP.NET Micro PDF-417 Generator DLL allows users to customize barcode images to fix their requirement by setting Image Resolution option, Image File Name function, etc. Micro PDF-417 Specification - ISO / IEC 24728 is pre-configured so that all the Micro PDF-417 barcodes are valid and scannable.
Micro PDF417 Generator for ASP.NET Features
Encodable Characters Micro PDF417 Generator support encoding:
-up to 150 bytes
-up to 250 alphanumeric characters
-up to 366 numeric digits
Quick IntegrationEasy to integrate advanced Micro PDF417 generating features into ASP.NET class, ASP.NET Web applications and Internet Information Service
Simple to Use Provide comprehensive sample code & user guide for Micro PDF417 generation without any change
Full Barcode Options Multiple barcode setting options for you to select, including module width, image width, color, rotation, resolution, text, etc.
High Performance Directly stream high-quality Micro PDF417 barcodes into all browsers, including IE, Chrome, Opera, Safari, and more
For all Printers High quality barcode images may be printed with any printers, including those low-resolution printers
Micro PDF417 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 PDF417 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 "micropdf417.aspx" and "micropdf417.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 PDF417 Setting see below.
How to Generate Micro PDF417 with C#, VB.NET Class in ASP.NET?
Copy those following sample code to your ASP.NET Project:
using BusinessRefinery.Barcode;

MicroPDF417 barcode = new MicroPDF417();
barcode.Code = "MicroPDF417";
barcode.Format = ImageFormat.Gif;
barcode.drawBarcode2ImageFile("c:/micropdf417-csharp.gif");
Dim barcode As BusinessRefinery.Barcode.MicroPDF417 = 
New BusinessRefinery.Barcode.MicroPDF417()
barcode.Code = "MicroPDF417"
barcode.Format = System.Drawing.Imaging.ImageFormat.Gif
barcode.drawBarcode2ImageFile("c:/micropdf417-vb-net.gif")
How to Create Your Own Micro PDF417 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/micropdf417.aspx?code=MicroPDF417
  4. Add an image tag <img> into the web page to create Micro PDF417 barcode image in html or aspx pages, e.g. <img src="http://localhost/br_barcode/micropdf417.aspx?code=MicroPDF417"/>.