Click here to Skip to main content
15,901,205 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have downloaded the zip file of how to create a barcode image from here. The problem is I don't know how to save the generated image of the barcode in the database. Also, I don't know how to get the filename of the asp:Image control. Can someone please help me. Thank you!
Posted
Comments
DamithSL 23-Dec-14 22:40pm    
how you generate barcode and how you display the barcode in the web form? update the question with your code
Member 11316934 24-Dec-14 4:29am    
Here is the code for the onclick button on generating barcode image.

string strImageURL = "GenerateBarcodeImage.aspx?d=" + initial_barcode + generate + "&il=" + this.chkGenerateLabel.Checked.ToString();
this.BarcodeImage.ImageUrl = strImageURL;
this.BarcodeImage.Width = 300;
this.BarcodeImage.Height = 150;
this.BarcodeImage.Visible = true;

I want to save the asp:Image file on the database as well as in my folder "Barcode_images"

1 solution

 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900