Overviews
- Easy to drag & drop Identcode generating component onto ASP.NET Web forms
- Support to use in Internet Information Services (IIS)
- Compatible with the Microsoft Visual Studio 2005/2008/2010
- Provide 100% source code for C#.NET and VB.NET
- Add checksum digit for Identcode automatically
- Completely run in C#, VB.NET for .NET 2.0 and later version
- Support all major web browsers, including Internet Explorer, FireFox, Chrome, Safari
- Easy to manipulate Identcode barcodes with margin, X,Y dimension, wide to narrow ratio, etc
- Mature and reliable barcode component used world-wide
- Royalty-free purchased developer license
Identcode ASP.NET Barcode Generator 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.
c# gs1 barcode parser,
how to use barcode excel,
input barcode data into excel,
generate barcode c# asp.net,
free barcode generator in c# windows application,
barcode scanner code in vb.net
Other Identcode generator, see
Identcode barcode in Winforms,
Identcode barcode in C#,
Identcode barcode in VB.NET,
Identcode barcode in Report Services
Identcode Information
Identcode, is also named as Deutsche Post Identcode Barcode, German Postal 2 of 5 Identcode, Deutsche Post AG Identcode, Deutsche Frachtpost Identcode, CodeIdentcode, Deutsche Post AG.
Barcode |
Character Set |
Sample Image |
Identcode |
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
|
|
How to Generate Identcode Barcodes using KA.Barcode for ASP.NET
Setup Process
- Download Identcode Barcode Control for ASP.NET Trial Version and unzip
- Copy KeepAutomation.Barcode.Web.dll to your ASP.NET project folder
Drag & Drop KA.Barcode Generator for ASP.NET - Identcode Barcode Generator
Add Barcode Control to your ASP.NET Web Forms toolbox
- Right click toolbox, choose "Choose Items..."
- Goto tab ".NET Framework Components", and click "Browse..." button
- Select KeepAutomation.Barcode.Web.dll
- Click "OK" button
Making & Streaming Identcode in IIS
Install our buildin ASP.NET Barcode Generator web application
- Copy folder "barcode" in your download the trial package to your IIS web application folder
- Create a virtual directory, named "barcode", and link to your just copied "barcode" folder
- Restart IIS
- Now you have successfully install the ASP.NET Barcode Generator web application
- To test it, open your web browser, and navigate to "http://localhost/barcode/barcode.aspx?symbology=0&code-to-encode=12345"
- A Identcode barcode will be displayed
- If you want to change Identcode image format, insert a tag <img> onto your web pages <img src="http://localhost/barcode/barcode.aspx?symbology=0&code-to-encode=12345" />
Generating Identcode for ASP.NET Using C#, VB.NET
We provide 100% C# and VB.NET source code for generating Identcode barcodes in ASP.NET Web forms.
Sample Code in C#.NET |
Sample Code in VB.NET |
using KeepAutomation.Barcode.Bean;
BarCode identcode = new BarCode();
identcode.Symbology = KeepAutomation.Barcode.Symbology. identcode;
identcode.CodeToEncode = "3157994";
identcode.generateBarcodeToImageFile(("../barcode-identcode-csharp.gif");
|
Dim identcode As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
identcode.Symbology = KeepAutomation.Barcode.Symbology.identcode
identcode.CodeToEncode = "3157994";
identcode.generateBarcodeToImageFile("../identcode-vb-net.gif")
|
More Identcode property settings, See Identcode Generation in C#.NET |
More Identcode property settings, See Identcode Generation in VB.NET |