SYSTEM REQUIREMENTS
To use Barcode .Net, you must be running,
In addition, to use Barcode .Net in a web server environment, you'll also need to have Internet Information Services installed with ASP.NET enabled.
CONFIGURING A WINDOWS APPLICATION
When using Barcode .Net in a Windows application (typically written using Windows Forms), you just need to copy the Bokai.Barcodes.dll file to your application's directory.
CONFIGURING A WEB APPLICATION
When using Barcode .Net in a web application, you need to do two things:
<httpHandlers> <add verb="GET" path="BarcodeHandler.aspx" type="Bokai.Barcodes.BarcodeHandler, Bokai.Barcodes" /> </httpHandlers>Note that there's no actual file called BarcodeHandler.aspx, but you can reference it within your application as a URL and you don't need to specify any path.
If you are going to use Barcode .Net in web applications, you can do this to make sure you have installed the product correctly: Type the following URLs, one at a time, in your browser's URL field and then press enter.
http://localhost/Barcode.Net/Barcode.aspx http://localhost/Barcode.Net/BarcodeHandler.aspx(Replace Barcode.Net by the name of your application's virtual directory)
You should see a barcode displayed in your browser in both cases,
Otherwise, you would see error messages on the screen, telling you what the problem is.