'Xslt Insert Image From Path
I have a xslt file and i want add an image from path. I tried with this codes but i didn't see image in my xslt file.
My codes:
<td width="40%" align="right" valign="middle">
<br/>
<img style="width:400px;" align="right" alt="Barcode"
src="file:///C:/DCS/DCSEInvoiceBarcode.png"/>
</td>
And my result is here:
What is the problem in my code and what must do i?
Thank you.
Solution 1:[1]
Solved our problem. When we searched, we found that: Our codes is correct. The problem's source is invoice provider company's service. If you need insert picture from path to xslt, you can use this codes:
<td width="40%" align="right" valign="middle">
<br/>
<img style="width:400px;" align="right" alt="Barcode"
src="file:///C:/DCS/DCSEInvoiceBarcode.png"/>
</td>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mehmet Arl? |

