Click here to Skip to main content
15,879,535 members
Articles / Web Development / ASP.NET
Article

Barcodes in ASP.NET applications

Rate me:
Please Sign up or sign in to vote.
4.27/5 (35 votes)
21 Oct 2008CPOL1 min read 265.9K   128   60
Easy and cheap barcodes in ASP.NET.

Introduction

In one of my projects, I needed to implement barcodes into an ASP.NET page. Unfortunately, the only way that I found was using a third party component. So, I decided to find a way to do it without using external components.

Using the code

First, you have to download a free barcode font. For this example, I used "IDAutomationHC39M" from IdAutomation. In this example, I used Barcode 39.

In WinForms applications, it is really easy to use Barcode fonts; just place a Label, and apply the free barcode font, and assign a value, and everything is ready.

In Webforms, things are different, because the application runs on the server. The barcode font must reside on the server. If we use a Label, the barcode font is located on the server, not on the client, so you will just see the value, not the barcode.

Well, let's start:

Just copy the barcode font into the windows\fonts folder of the server. The whole idea is to create a text with the font (a barcode), then create an image of it, and send it back to the client.

Here is a simple page with it:

C#
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace Barcodes
{

/// <summary />
/// Summary description for BarCode.
/// </summary />

public class BarCode : System.Web.UI.Page
{
    private void Page_Load(object sender, System.EventArgs e)
    {
         // Get the Requested code to be created.
         string Code = Request["code"].ToString();

         // Multiply the lenght of the code by 40 (just to have enough width)
         int w = Code.Length * 40;
    
        // Create a bitmap object of the width that we calculated and height of 100
         Bitmap oBitmap = new Bitmap(w,100);
    
        // then create a Graphic object for the bitmap we just created.
         Graphics oGraphics = Graphics.FromImage(oBitmap);
        
        // Now create a Font object for the Barcode Font
        // (in this case the IDAutomationHC39M) of 18 point size
        Font oFont = new Font("IDAutomationHC39M", 18);
        
        // Let's create the Point and Brushes for the barcode
        PointF oPoint = new PointF(2f, 2f);
         SolidBrush oBrushWrite = new SolidBrush(Color.Black);
         SolidBrush oBrush = new SolidBrush(Color.White);
            
        // Now lets create the actual barcode image
        // with a rectangle filled with white color
        oGraphics.FillRectangle(oBrush, 0, 0, w, 100);
            
        // We have to put prefix and sufix of an asterisk (*),
        // in order to be a valid barcode
        oGraphics.DrawString("*" + Code + "*", oFont, oBrushWrite, oPoint);
        
        // Then we send the Graphics with the actual barcode
        Response.ContentType = "image/jpeg" ;
         oBitmap.Save (Response.OutputStream, ImageFormat.Jpeg);
    }
}
}

Let's test our page. Just call http://localhost/BarCodes/BarCode.aspx?Code=1234.

Pic1.png

As you can see, there is a barcode with the value of 1234.

Now, let’s create a page that has an asp:Image on it:

ASP.NET
<%@ Page language="c#" Codebehind="WebForm1.aspx.cs" 
   AutoEventWireup="false" Inherits="BarCodes.WebForm1" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
 <HEAD>
  <title>WebForm1</title>
  <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
  <meta name="CODE_LANGUAGE" Content="C#">
  <meta name="vs_defaultClientScript" content="JavaScript">
  <meta name="vs_targetSchema" 
        content="http://schemas.microsoft.com/intellisense/ie5">
 </HEAD>
 <body MS_POSITIONING="GridLayout">
  <form id="Form1" method="post" runat="server">
   <asp:Image id="myBarCode"  runat="server"></asp:Image>
  </form>
 </body>
</HTML>

Add this to the code behind:

C#
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace BarCodes
{
    /// <summary />
    /// Summary description for WebForm1.
    /// </summary />
    public class WebForm1 : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.Image myBarCode;
    
        private void Page_Load(object sender, System.EventArgs e)
        {
            // Put user code to initialize the page here
            myBarCode.ImageUrl = "BarCode.aspx?code=31231";
        }

        #region Web Form Designer generated code
        override protected void OnInit(EventArgs e)
        {
            //
            // CODEGEN: This call is required by the ASP.NET Web Form Designer.
            //
            InitializeComponent();
            base.OnInit(e);
        }
        
        /// <summary />
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary />
        private void InitializeComponent()
        {    
            this.Load += new System.EventHandler(this.Page_Load);

        }
        #endregion
    }
}

Now, let’s see the result:

Pic2.png

Well friends, that is all! An easy and cheap way to have barcodes in your ASP.NET applications.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) INTERlink Software
Guatemala Guatemala
I have been developing software for a while, using ASP.NET (since version 1.0) and C#.

Comments and Discussions

 
QuestionBar Code Pin
mithileshdotnet2-Apr-19 0:53
professionalmithileshdotnet2-Apr-19 0:53 
QuestionNot Working Pin
sunita shirsat8-Jun-15 1:54
sunita shirsat8-Jun-15 1:54 
QuestionHow can i print it? Pin
badeveloper7-Jan-15 10:40
badeveloper7-Jan-15 10:40 
QuestionNot Working Pin
SDE EDP2-May-14 23:20
SDE EDP2-May-14 23:20 
QuestionBar code generate Pin
Niranjan dotnet10-Apr-14 19:26
professionalNiranjan dotnet10-Apr-14 19:26 
QuestionIt is not a good idea to build barcode based on the barcode code Pin
vadim30713-Feb-14 19:59
vadim30713-Feb-14 19:59 
QuestionHow to add data Pin
heemanshubhalla6-Feb-14 23:45
heemanshubhalla6-Feb-14 23:45 
QuestionNice Job Pin
Member 1018686221-Oct-13 21:50
Member 1018686221-Oct-13 21:50 
GeneralMy vote of 3 Pin
arcdon1-Oct-13 0:45
arcdon1-Oct-13 0:45 
GeneralMy vote of 1 Pin
Member 1023942011-Sep-13 21:20
Member 1023942011-Sep-13 21:20 
QuestionBarcode image is not displaying Pin
geetha rangaiah15-May-13 22:33
geetha rangaiah15-May-13 22:33 
GeneralMy vote of 3 Pin
Sahyadri315-Nov-12 0:20
Sahyadri315-Nov-12 0:20 
QuestionScanning the barcode Pin
priti shrivastava29-Oct-12 22:44
priti shrivastava29-Oct-12 22:44 
QuestionHow Can i use it from text box Pin
Mohammed Abdul Muqeet7-Sep-12 22:36
Mohammed Abdul Muqeet7-Sep-12 22:36 
QuestionBarcode Pin
vsvarunsharma13-Aug-12 19:15
vsvarunsharma13-Aug-12 19:15 
GeneralMy vote of 5 Pin
SavindraSingh10-Aug-12 4:12
SavindraSingh10-Aug-12 4:12 
GeneralMy vote of 2 Pin
Pankil_Plus16-Jul-12 5:28
Pankil_Plus16-Jul-12 5:28 
BugBarcode not working on server but localhost Pin
Member 795278311-Jun-12 22:49
Member 795278311-Jun-12 22:49 
I tried installing the font on server & the localhost. It working perfect on localhost.
But it is not showing the barcode when hosting on production sever.
GeneralMy vote of 5 Pin
Manoj Kumar Choubey23-Feb-12 21:06
professionalManoj Kumar Choubey23-Feb-12 21:06 
QuestionMessage Closed Pin
3-Feb-12 14:06
WebMaster3-Feb-12 14:06 
Questionhow can I do to see the bar code in webform Pin
Member 850929422-Dec-11 21:32
Member 850929422-Dec-11 21:32 
QuestionBarcode for Crystal Report Pin
Member 82184676-Sep-11 22:34
Member 82184676-Sep-11 22:34 
AnswerMessage Closed Pin
24-Nov-11 19:27
Ivy Shirley24-Nov-11 19:27 
QuestionBarCodes Generated Fine But Not being READ Pin
the headless nick4-Aug-11 1:43
professionalthe headless nick4-Aug-11 1:43 
AnswerMessage Closed Pin
24-Nov-11 19:31
Ivy Shirley24-Nov-11 19:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.