how to insert an image dynamically into a table
-
I am actually generating barcodes. Now each cell have some information related with a product along with it's barcode generated at runtime. Now please tell me how can I place this barcode image at a specific position in a cell using coordinates & coding in c#. I am using asp.net 3.5
-
I am actually generating barcodes. Now each cell have some information related with a product along with it's barcode generated at runtime. Now please tell me how can I place this barcode image at a specific position in a cell using coordinates & coding in c#. I am using asp.net 3.5
well, you dont need to use coordinates in asp .net. All u have to do is save those dynamically generated images of barcodes (with probably the ID of the product or something to uniquely identify them) and then use the ASP image control to assign the URL to it. Hope that answers the question. Good luck
Rocky My Blog
-
well, you dont need to use coordinates in asp .net. All u have to do is save those dynamically generated images of barcodes (with probably the ID of the product or something to uniquely identify them) and then use the ASP image control to assign the URL to it. Hope that answers the question. Good luck
Rocky My Blog
thank you sir I will try your suggestion