Data Matrix barcode generator with free ASP.NET sample
Barcode for ASP.NET > Generate Barcode in ASP.NET > 2D > Data Matrix
How to Generate Data Matrix in ASP.NET Application
How to Insert & Create 2D Data Matrix Barcode Images in ASP.NET Web Projects
ASP.NET Data Matrix Barcode Generator Introduction
Data Matrix barcode generation SDK is a barcoding functionality of KA.Barcode for ASP.NET, a powerful barcode generating control library for high-quality Data Matrix image output in ASP.NET websites/ web pages/ webform.
2D Data Matrix Overview in ASP.NET
Data Matrix, also named ECC200, 2D Data Matrix barcode, is a two-dimensional matrix barcode commonly used to mark small items. Being space-efficient, Data Matrix is recommended by America's EIA for labeling small electronic components.
Data Matrix Encodable Characters in ASP.NET
All ASCII characters, including 0-9, A-Z, a-z and special characters like $ , % + / : * etcImages, double-byte characters, binary data and 8 bit values
Download Data Matrix Barcode Generator for ASP.NET
Please download KA.Barcode for ASP.NET demo package freely. Developers are able to use the demo version to generate Data Matrix barcode images in ASP.NET. For the generated barcode images contain a "KA Barcode" watermark, this trial version only can be used for demo applications. It includes:
How to Generate Data Matrix With ASP.NET Web Control
How to Generate Data Matrix in C# or VB.NET Programming
It is simple to produce and stream Data Matrix barcode image into ASP.NET web form applications.
Step 1: Add reference "KeepAutomation.Barcode.Web.dll" to your ASP.NET Web project.Step 2: Copy the following C#/VB.NET demo barcode program to stream Data Matrix barcode in ASP.NET webforms/websites.
C# Sample code
BarCode datamatrix = new BarCode();
datamatrix.Symbology = KeepAutomation.Barcode.Symbology.DataMatrix;
datamatrix.CodeToEncode = "DataMatrix";
datamatrix.X = 4;
datamatrix.Y = 4;
datamatrix.generateBarcodeToImageFile("C://datamatrix-csharp.png");
View More
VB Sample code
Dim datamatrix As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
datamatrix.Symbology = KeepAutomation.Barcode.Symbology.DataMatrix
datamatrix.CodeToEncode = "DataMatrix"
datamatrix.X = 4
datamatrix.Y = 4
datamatrix.ImageFormat = System.Drawing.Imaging.ImageFormat.Png
datamatrix.generateBarcodeToImageFile("C://datamatrix-vb-net.png")
View More
How to Set Data and Format Mode of Data Matrix in ASP.NET
KA.Barcode for ASP.NET creates highly customized barcode images which lets you select data mode and format mode easily by setting "DataMatrixDataMode" and "DataMatrixFormatMode".
C# Sample code
datamatrix.DataMatrixDataMode = KeepAutomation.Barcode.DataMatrixDataMode.Auto;
datamatrix.DataMatrixFormatMode = KeepAutomation.Barcode.DataMatrixFormatMode.FM_12X12;
VB Sample code
datamatrix.DataMatrixDataMode = KeepAutomation.Barcode.DataMatrixDataMode.Auto
datamatrix.DataMatrixFormatMode = KeepAutomation.Barcode.DataMatrixFormatMode.FM_12X12
How to Create GS1 compatible Data Matrix in ASP.NET
By agreement between AIM, Inc. and GS1 (formerly EAN International and the Uniform Code Council (UCC)), the use of FNC1 could be used to encode GS1 compatible Data Matrix. To achieve this, users should set the "FNC1" property.
C# Sample code
datamatrix.FNC1 = KeepAutomation.Barcode.FNC1.First;
VB Sample code
datamatrix.FNC1 = KeepAutomation.Barcode.FNC1.First
How to Set Tilde Function of Data Matrix in ASP.NET
Data Matrix Symbols are able to encode special characters by setting "TildeEnabled" property to true.
C# Sample code
datamatrix.TildeEnabled = true;
VB Sample code
datamatrix.TildeEnabled = true
How to Generate Data Matrix in Microsoft IIS Through URL
How To Start