I have a usercontrol which includes an image. I am not able to modify image’s styling property from my UI page.
<td class="innerDiv">
<div style="width: 100%;">
<uc:ImgControl ID="imgC1" runat="server" />
</div>
</td>
I want the height and width to be different from whatever is currently loaded. Is there a way I can modify/override the width property of image in the above shown code?
I cannot do it in the UserControl page as the control has been used at other places as well.
Any pointers ?
1 Answer