ISSN for ASP.NET
BusinessRefinery.com provides ASP.NET Web Barcode control, which support to 20+ linear & 2D barcodes in ASP.NET Web applications, including ISSN. Besides, it easily and quickly generates ISSN barcodes in IIS without any .NET programming. Equipped with 50+ barcode properties, ASP.NET Barcode ISSN Generator allows users to customize ISSN barcode size, image properties, color, etc to suit their needs.


ISSN, short for International Standard Serial Number, is a fixed-length, numeric linear barcode used in periodical publications. It is created using the EAN-13 symbology with a special prefix.


ASP.NET ISSN prints 10 letters:
  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
ASP.NET Barcode ISSN Generator

1. How to create ISSN barcodes in ASP.NET Web Application using ASP.NET Barcode Generator Web Control Library?

  1. Download BusinessRefinery.com ASP.NET ISSN Barcode and unzip
  2. Copy BusinessRefinery.Barcode.Web.dll to your ASP.NET project folder. Do not copy dll to .NET bin directory, Visual Studio build tools will do it for you.
  3. Add BusinessRefinery.Barcode.Web.dll to your ASP.NET project or website reference

2. Generate ISSN into your ASP.NET Web Forms using ASP.NET Barcode Web Control

  1. Install BusinessRefinery.com ASP.NET ISSN Barcode
  2. Add ASP.NET Barcode Generator Control to your Visual Studio ToolBox
  3. Copy "linear.aspx" and "linear.aspx.cs" to the folder where your aspx pages are generating barcodes.
  4. Drag and drop "LinearWebForm" to your ASPX web forms.
  5. Run the website to view the barcodes generated. To customize ISSN settings, view ISSN barcode settings below.

3. Generate ISSN into your Interner Information Service (IIS) using ASP.NET Barcode Web Control

  1. Download BusinessRefinery.com ASP.NET ISSN Barcode and unzip
  2. Copy barcode fold and contents to IIS and create a new file directory called "br_barcode"
  3. Restart IIS, navigate to http://YourDomain:Port/br_barcode/aspnet.aspx?code=123456789&symbology=21
  4. Add an image tag <img> into the web page to create ISSN barcode image in html or aspx pages, e.g.
    <img src="http://YourDomain:Port/br_barcode/aspnet.aspx? code=123456789&symbology =21 />

4. Generate ISSN into your ASP.NET Web Forms using C#, VB.NET ISSN Generating Sample Code


How to generate ISSN barcodes in C#.NET Class?

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ISSN;
barcode.Code = "123456789";
barcode.draw arcode2ImageFile("C://issn.gif");

How to generate ISSN barcodes in VB.NET Class?

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ISSN
barcode.Code = "123456789"
barcode.drawBarcode2ImageFile("C://issn.gif")

5. How to draw ISSN barcodes to image files (GIF, JPEG, BMP, PNG, & TIFF) and ASP.NET objects like Graphics, Stream, Bitmap?


Draw ISSN barcodes to image files


using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ISSN;
barcode.Code = "123456789";
barcode.draw arcode2ImageFile("C://issn.gif");


Draw ISSN barcode image into .NET Graphics, Stream & Bitmap objects.


barcode.drawBarcode2Stream("Stream object");
barcode.drawBarcodeOnGraphics("Graphics object");
Bitmap barcodeInBitmap = barcode.drawBarcode();

ASP.NET Barcode ISSN Generator - Barcode Property Settings

Basic

  • symbology (HTTP Parameter, ISSN: 21; ISSN_2: 22; ISSN_5: 23)to choose barcode type; Default Value: 1 code(HTTP Parameter) to encode ISSN valid character; Default Value: ""
  • add-checksum (HTTP Parameter)to apply Checksum digit at the end of some linear barcode value; Default Value: false

For ISSN

  • supplement-code (HTTP Parameter) to add supplement data (2 digits or 5 digits only); Default Value: ""; Valid value: digits 0-9
  • supplement-height (HTTP Parameter) to set supplemental code bar module height; Default Value: 0.8f; Valid value: X% of Y
  • supplement-space (HTTP Parameter) to set space between ISSN barcode and supplement code; Default Value: 15

Barcode Size

  • barcode-unit (HTTP Parameter)to choose unit of meature for all size related properties ; Default Value: 0 (UOM_PIXEL)
  • bar-width (HTTP Parameter) to set bar module width (X); Default Value: 3
  • bar-height (HTTP Parameter) to set bar module height(Y); Default Value: 60
  • left-margin (HTTP Parameter) to set generated barcode image left margin; Default Value: 0.0f
  • right-margin (HTTP Parameter) to set generated barcode image right margin; Default Value: 0.0f
  • top-margin (HTTP Parameter) to set generated barcode image top margin; Default Value: 0.0f
  • bottom-margin (HTTP Parameter) to set generated barcode image bottom margin; Default Value: 0.0f
  • resolution (HTTP Parameter) to control generated barcode image resolution in dpi; Default Value: 72 dpi
  • rotate (HTTP Parameter) to rotate generated barcode image angle; Default Value: 0; valid values: 0 (ROTATE_0), 1 (ROTATE_90), 2 (ROTATE_180), 3 (ROTATE_270)
  • barcode-width (HTTP Parameter) to manage generated barcode image width; Default Value: 0
  • barcode-height (HTTP Parameter) to manage generated barcode image height; Default Value: 0

Barcode Text Style

  • display-text (HTTP Parameter) to draw barcode value text under the barcode if it is true; Default Value: true
  • display-checksum-digit (HTTP Parameter) to display last checksum digit if it is true; Default Value: true
  • text-font (HTTP Parameter) to customize drawn barcode value text font style; Default Value: new Font("Arial", Font.PLAIN, 11) text-margin (HTTP Parameter) to the space between barcode and barcode text; Default Value: 6 pixel




Quick Links