Click here to Skip to main content
15,912,493 members

Comments by Member 11316934 (Top 3 by date)

Member 11316934 28-Dec-14 6:26am View    
Hi. I have tried your code but I got this error 'Illegal characters in path.'
Member 11316934 24-Dec-14 4:29am View    
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"
Member 11316934 23-Dec-14 14:44pm View    
I want to save the jpeg file of the image control in my folder "Barcode_images". Can you please help me? Thanks.
This is my code
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;