I am using Barcode Rendering Framework for generating a barcode. I have downloaded their dll's. I can see,how it can be done in windows application. I want to do the same i.e, generating the barcode and using it in web application. Following is the link for the question that can be used. Free Barcode API for .NET and following is the code :
Code39BarcodeDraw barcode39 = BarcodeDrawFactory.Code39WithoutChecksum;
System.Drawing.Image img = barcode39.Draw("Hello World", 40);
pictureBox1.Image = barcode39.Draw("Hello World", 40);
How can I use the same functionality in web application?