Code 93 for ASP.NET Overview
- Easy to drag & drop Code 93 generating component onto ASP.NET Web forms
- Support to use in Internet Information Services (IIS)
- Automatically add checksum digit for Code 93 according to its data length
- Provide 100% source code for C#.NET and VB.NET
- Generate, print high-quality Code 93 barcode into GIF, BMP, PNG, JPEG, TIFF
- Equipped with 50+ option to customize Code 93 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
qr code generator c# example,
codeproject vb.net barcode generator,
c# barcode and qr code generator,
c# barcode 128 generator,
c# data matrix reader,
rdlc barcode free
Code 93 ASP.NET Barcode Library 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.
barcode image generation in java,
barcode generator project source code in vb.net,
barcode generator in c# windows application codeproject,
gs1 barcode parser c#,
c# print barcode zebra,
excel barcode font
100% source code of C# and VB.NET are provided for making Code 93 barcodes
in ASP.NET Web forms, IIS, ASP.NET Class, etc.Other Code 93 generator, see
Code 93 barcode in Winforms,
Code 93 barcode in C#,
Code 93 barcode in VB.NET,
Code 93 barcode in Report Services
Code 93 Barcode Information
Code 93, also named as ANSI/AIM Code 93, USS Code 93, USS 93, Code 9/3, USS-93, Code 93 Extended.
Barcode |
Character Set |
Sample Image |
Code 93 |
- 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
- Uppercase letters (A - Z)
- - (Dash), $ (Dollar), % (Percentage), (Space), . (Point), / (Slash), + (Plus)
|
|
How to Generate Code 93 using KA.Barcode for ASP.NET
Setup Process
- Download .NET Code 93 Barcode Library in ASP.NET and unzip
- Copy KeepAutomation.Barcode.Web.dll to your ASP.NET project folder
Drag & Drop KA.Barcode Generator for ASP.NET - Code 93 Generator Library
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
Generating, Drawing & Streaming Code 93 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< /li>
- 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 Code 93 barcode will be displayed
- If you want to change Code 93 image format, insert a tag <img> onto your web pages <img src="http://localhost/barcode/barcode.aspx?symbology=0&code-to-encode=12345" />
Generating & Drawing Code 93 in ASP.NET Using C#, VB.NET
We provide 100% C# and VB.NET source code for generating Code 93 barcodes in ASP.NET Web forms.
Sample Code in C#.NET |
Sample Code in VB.NET |
using KeepAutomation.Barcode.Bean;
BarCode code93 = new BarCode();
code93.Symbology = KeepAutomation.Barcode.Symbology. code93;
code93.CodeToEncode = "3157991";
code93.generateBarcodeToImageFile(("../barcode-code93-csharp.gif");
|
Dim code93 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
code93.Symbology = KeepAutomation.Barcode.Symbology.code93
code93.CodeToEncode = "3157991";
code93.generateBarcodeToImageFile("../code93-vb-net.gif")
|
More Code 93 property settings, See Code 93 Generation in C#.NET |
More Code 93 property settings, See Code 93 Generation in VB.NET |