|
Home >
Barcode Components >
.NET Barcode for ASP.NET >
ASP.NET Barcode Generation Guide to Create Barcodes in ASP.NET
ASP.NET Barcode Generator
ASP.NET Barcode Generation in .NET, ASP.NET, C#, VB.NET
- Quick to generate barcodes in IIS without any .NET programming
- Simple to integrate with your ASP.NET Web Applicatons
- Easy to draw barcodes on your aspx web page with Design View barcode component
- Rich barcode settings to customize your generating barcodes.
- Minimum barcode knowledge required, with complete developer guides
- Easy to generate barcodes with comprehensive C#, VB.NET sample codes
- Mature and reliable ASP.NET barcode generation component since 2003
- ISO Compatible barcodes are guaranteed
- Royalty free with Developer License purchased
.NET Barcode for ASP.NET
is a ASP.NET Web Form Barcode Generation Package which supports 30+ linear & 2D barcode generation in various ASP.NET development environments.
1. How to create barcodes in ASP.NET Web Application using ASP.NET Barcode Generator Web Control Library?
-
add BusinessRefinery.Barcode.Web.dll to your ASP.NET project reference
-
add ASP.NET Barcode Generator ASP.NET Web Control Library to .NET Visual Studio Toolbox
2. Generate barcodes using C# in ASP.NET class?
using BusinessRefinery.Barcode;
// construct a linear barcode object
Linear barcode = new Linear();
// set linear barcode symbolgoy to code-128
barcode.Symbology = Symbology.CODE128;
// set code-128 code text to encode
barcode.Code = "9876543210";
//draw barcode and save into image file in gif format
barcode.drawBarcode("C://code-128-in-csharp.gif");
|
3. Generate barcodes using VB.NET in ASP.NET class?
// construct a linear barcode object
Dim barcode As BusinessRefinery.Barcode.Linear
barcode = New BusinessRefinery.Barcode.Linear()
// set linear barcode symbolgoy to code-128
barcode.Symbology = BusinessRefinery.Barcode.Symbology.CODE128
// set code-128 code text to encode
barcode.Code = "0123456789"
//draw barcode and save into image file in gif format
barcode.drawBarcode("C://code-128-in-vbnet.gif")
|
4. How to generate barcodes in ASP.NET Web Application using .NET Barcode Generator Streaming features?
-
Under evaluation package, copy the whole barcode folder with contents to your IIS web server, and create a new virtual directory named "barcode".
-
Restart IIS web server, open your web browser and navigate to http://project-url/barcode/linear.aspx?code=0123456789&symbology=7
-
To create barcode image to your html or aspx pages, you can insert an image tag (img) into your web page.
For example, <img src="ttp://project-url/barcode/linear.aspx?code=0123456789&symbology=7" />
|