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

  • Easy to drag & drop Leitcode generating component onto ASP.NET Web forms
  • Support to use in Internet Information Services (IIS)
  • Add checksum digit for Leitcode automatically
  • Provide 100% source code for C#.NET and VB.NET
  • Easy to manipulate Leitcode barcodes with margin, X,Y dimension, wide to narrow ratio, etc
  • Support all major web browsers, including Internet Explorer, FireFox, Chrome, Safari
  • Mature and reliable barcode component used world-wide
  • Royalty-free purchased developer license
Leitcode ASP.NET Barcode Library is one function of KA.Barcode Generator for ASP.NET, which is an easy-to-use barcode generating control worked with Microsoft Visual studio and Internet Information Services by using C#, VB.NET, Managed C++ and Borland Delphi for .NET and any other development environment that supports ASP.NET. Other Leitcode generator, see Leitcode in Winforms, Leitcode in C#, Leitcode in VB.NET, Leitcode in Report Services

Leitcode Information

Leitcode, is also named as Deutsche Post Leitcode Barcode, German Postal 2 of 5 Leitcode, CodeLeitcode, Leitcode, Deutsche Post AG(DHL).

Barcode Character Set Sample Image
Leitcode
  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9


How to Generate Leitcode Barcodes using KA.Barcode for ASP.NET

Setup Process

  1. Download .NET Leitcode Barcode Library in ASP.NET and unzip
  2. Copy KeepAutomation.Barcode.Web.dll to your ASP.NET project folder

Drag & Drop KA.Barcode Generator for ASP.NET - ASP.NET Leitcode Generator

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


Creating & Streaming Leitcode for IIS Application

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=0123456789012"

  6. A Leitcode barcode will be displayed
  7. If you want to change Leitcode image format, insert a tag <img> onto your web pages <img src="http://localhost/barcode/barcode.aspx?symbology=0&code-to-encode=0123456789012" />

Producing Leitcode in ASP.NET Using C#, VB.NET

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



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

leitcode.generateBarcodeToImageFile(("��/barcode-leitcode-csharp.gif");

Dim leitcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
leitcode.Symbology = KeepAutomation.Barcode.Symbology.leitcode
leitcode.CodeToEncode = "3157993157999";

leitcode.generateBarcodeToImageFile("��/leitcode-vb-net.gif")

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