hi,
The image of the control is not appearing both at design and in runtime , though the path is correct.
<
igtxt:WebImageButton ID="btnAdd" runat="server" ImageDirectory="/Images/" >
<Appearance> <Image Url="Images/Add-icon.png"/> </Appearance>
</igtxt:WebImageButton>
Image is present in the above path.
Pl help!
Thanks,
Parthi
Hi Parthi,
could you inspect your page with Firebug or Developer Toolbar. Are you sure that you give the correct path to it.
what if you try to set<igtxt:WebImageButton ID="btnAdd" runat="server" ImageDirectory="~/Images/" ><Appearance> <Image Url="~/Images/Add-icon.png"/></Appearance> </igtxt:WebImageButton>
I corrected my image Dir and that fixed the issue.
Thanks