Guide for ASP.NET Barcode Web Server Control

Quality Web Server Control that print linear and 2D Barcodes in ASP.NET

Barcode for ASP.NET
.NET Imaging Component
Home > Barcode in ASP.NET
This guide will walk you through the general installation process and basic generation process of ASP.NET Barcode Web Server Control. You will also walk through the barcode generation in Visual Studio as well as in IIS. This guide includes:
Barcode Generation in ASP.NET

Installation in Visual Studio

Add DLL to Toolbox in Visual Studio

There are two ways to use the installed DLL in Visual Studio:

Drag & Drop Barcodes to ASP.NET Web Forms

Generate Barcodes by coding

Add C#.NET to the Web Forms:
Linear barcode = new Linear();
barcode.Type = BarcodeType.CODE128;
barcode.Data = "Code 128";
barcode.drawBarcode("C://csharp-barcode-code128.gif");
You can also Add VB.NET to the Web Forms:
Dim barcode As Linear = New Linear
barcode.Type = BarcodeType.CODE128
barcode.Data = "Code 128"
barcode.drawBarcode("C:/vbnet-barcode-code128.gif")
Barcode Generation in Microsoft IIS without Visual Studio

Create file Directory in IIS

Preview barcode image

Create barcode image in web pages