Our Customers
Contact Us Email: support@barcodelib.com
Home > ASP.NET Barcode > ASP.NET Barcode Generation Guide > Guide for ASP.NET PLANET Barcode Generation, also creates POSTNET in ASP.NET.
Download Barcode for ASP.NET Trial

ASP.NET PLANET Barcode Generator Library

Guide for PLANET Barcode Generation in ASP.NET Web Applications & IIS
  • PLANET barcode generator absolutely developed in the managed Visual C# class
  • Create PLANET barcode image in Internet Information Services
  • Add advanced PLANET barcode creation functions in various ASP.NET projects
  • Support multiple ASP.NET PLANET barcode image formats, like png, gif and tiff
  • 100% compatible with PLANET barcode image generation standards
  • Provide affordable and permanent licenses for PLANET barcode generator users
ASP.NET PLANET Barcode Features
The Postal Alpha Numeric Encoding Technique (PLANET) barcode, also known as USPS PLANET Barcode & USPS Confirm Service Barcode, is used by the United States Postal Service to identify and track pieces of mail during delivery - the Post Office's "CONFIRM" services. The PLANET barcode is either 12 or 14 digits long including the mandatory checksum digit. It only encodes numbers 0 to 9.
PLANET Barcode Image Creation in Internet Information Services

PLANET Barcode Image Creation in Internet Information Services

  1. Download the free trial package of PLANET ASP.NET barcode generator dll and unzip it.
  2. Go to the unzipped package to find "barcode" folder, and copy it to your IIS folder.
  3. Create a new virtual directory named as barcode in your IIS and link it to the above "barcode" folder
  4. Restart your IIS and navigate to:
    http://YourDomain:Port/barcode/linear.aspx?Type=25&Data=14725896315&Barwidth=2&BarHeight=80&UOM=0

ASP.NET PLANET Barcode Creation in Web Forms Applications

  1. Add reference (BarcodeLib.Barcode.ASP.NET DLL) to your Visual Studio Toolbox.
  2. Copy "linear.aspx" and "linear.aspx.cs" to your project folder.
  3. Drag and drop LinearASPNET to your Visual ASP.NET project.
  4. Select PLANET in Type item under Properties window.
  5. Reset other properties of PLANET image in Properties window based on your needs.

PLANET Barcode Image Creation in ASP.NET Using C# & VB Class

You may generate PLANET barcode in ASP.NET applications only in two steps.
  1. Add BarcodeLib.Barcode.ASP.NET DLL to your ASP.NET project reference.
  2. Compile codes to generate C# & VB PLANET barcodes as below.
Sample codes for generating C# PLANET barcode image in ASP.NET applications:
     BarcodeLib.Barcode.Linear planet = new BarcodeLib.Barcode.Linear();
planet.Type = BarcodeType.PLANET;
planet.Data = "14725896315";

planet.UOM = UnitOfMeasure.PIXEL;
planet.BarWidth = 2;
planet.BarHeight = 100;
planet.Resolution = 96;
planet.BarColor = System.Drawing.Color.Blue;

planet.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff;

// Save barcode image into your system
planet.drawBarcode("c://planet.tiff");
Sample codes for generating VB PLANET barcode image in ASP.NET applications:
     Dim planet As New BarcodeLib.Barcode.Linear()
planet.Type = BarcodeType.PLANET
planet.Data = "14725896315"

planet.UOM = UnitOfMeasure.PIXEL
planet.BarWidth = 2
planet.BarHeight = 100
planet.Resolution = 96
planet.BarColor = System.Drawing.Color.Blue

planet.ImageFormat = System.Drawing.Imaging.ImageFormat.Tiff

' Save barcode image into your system
planet.drawBarcode("c://planet.tiff")
All Barcode Types Used in ASP.NET Applications
Support Linear Barcodes:
Support Matrix Barcodes:
Support 2D Barcodes: Data Matrix, PDF 417, QR Code.



Other Related Barcode Generation Articles

ASP.NET C# & VB.NET Barcode Generation Guide