I want to localize the img alt attribute on an asp.net project so it could be multilingual. I want it preferably to be in LocalResources and not Global. Also i want to know if this can happen without making the img to asp:Image.
<img meta:resourcekey="WhoCalls" alt="Who calls?" src=""
style="opacity: 0.5; filter: alpha(opacity=50);"/>
I want something like this:
<img alt="<%$ Resources:Default.aspx, HelloResource %>" src=""
style="opacity: 0.5; filter: alpha(opacity=50);"/>
Any Ideas? Thank you.