KA.Barcode for ASP.NET
Code 11 Barcode Generator for ASP.NET
Generate & Create Code 11 Bar Code Images in ASP.NET, IIS, C#, VB.NET class library
Code 11 for ASP.NET Overview

  • Easy to drag & drop Code 11 generating component onto ASP.NET Web forms
  • Support to use in Internet Information Services (IIS)
  • Automatically add checksum digit for Code 11 according to its data length
  • Provide 100% source code for C#.NET and VB.NET
  • Generate, print high-quality Code 11 barcode into GIF, BMP, PNG, JPEG, TIFF
  • Equipped with 50+ option to customize Code 11 barcodes
  • Support all major web browsers, including Internet Explorer, FireFox, Chrome, Safari
  • Mature and reliable barcode component used world-wide
  • Royalty-free purchased developer license
ASP.NET Code 11 Generation Component is one function of KA.Barcode Generator for ASP.NET, which supports C#, VB.NET, Managed C++ and Borland Delphi for .NET 2.0 and later version.

vb.net barcode reader code, free barcode generator in c# windows application, print barcode asp.net c#, how to install barcode font in excel 2016, java barcode printing library, barcode generator c# wpf

100% source code of C# and VB.NET are provided for making Code 11 barcodes in ASP.NET Web forms, IIS, ASP.NET Class, etc.Other Code 11 generator, see Code 11 in Winforms, Code 11 in C#, Code 11 in VB.NET, Code 11 in Report Services


Code 11 Barcode Information

Code 11, also named as Code11, USD-8, UDD8, is a common linear barcode widely used for telecommunications.

Barcode Character Set Sample Image
Code 11
  • Digits:0, 1, 2, 3, 4, 5, 6, 7, 8, 9

  • - (Dash)




How to Generate Code 11 using KA.Barcode for ASP.NET

Setup Process

  1. Download .NET Code 11 Barcode in ASP.NET Trial and unzip
  2. Copy KeepAutomation.Barcode.Web.dll to your ASP.NET project folder

Drag & Drop KA.Barcode Generator for ASP.NET - Code 11 Generation Component

Add Barcode Control to your ASP.NET Web Forms toolbox

  1. Right click toolbox, choose "Choose Items..."
  2. Goto tab ".NET Framework Components", and click "Browse..." button
  3. Select KeepAutomation.Barcode.Web.dll
  4. Click "OK" button


Generating & Streaming Code 11 in IIS

Install our buildin ASP.NET Barcode Generator web application
  1. Copy folder "barcode" in your download the trial package to your IIS web application folder
  2. Create a virtual directory, named "barcode", and link to your just copied "barcode" folder
  3. Restart IIS
  4. Now you have successfully install the ASP.NET Barcode Generator web application
  5. To test it, open your web browser, and navigate to "http://localhost/barcode/barcode.aspx?symbology=0&code-to-encode=12345"
  6. A Code 11 barcode will be displayed
  7. If you want to change Code 11 image format, insert a tag <img> onto your web pages <img src="http://localhost/barcode/barcode.aspx?symbology=0&code-to-encode=12345" />

Encoding Code 11 Barcode in ASP.NET Using C#, VB.NET

We provide 100% C# and VB.NET source code for generating Code 11 barcodes in ASP.NET Web forms.



Sample Code in C#.NET Sample Code in VB.NET
using KeepAutomation.Barcode.Bean;
BarCode code11 = new BarCode();
code11.Symbology = KeepAutomation.Barcode.Symbology. code11;
code11.CodeToEncode = "3157988" ;

code11.generateBarcodeToImageFile(("../barcode-code11-csharp.gif");

Dim code11 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
code11.Symbology = KeepAutomation.Barcode.Symbology.code11
code11.CodeToEncode = "3157988";

code11.generateBarcodeToImageFile("../code11-vb-net.gif")

More Code 11 property settings, See Code 11 Generation in C#.NET More Code 11 property settings, See Code 11 Generation in VB.NET