I'm using asp:Hyperlink to render linked images dynamically based on parameters in the URL. I need to be able to add a CSS class to the rendered img, and can't figure out how to do that.
I know I can add "CssClass="blah"" to the asp:Hyperlink, but in the rendered HTML, only the a receives the css class. Like this:
<a href="assets/images/blah.jpg" class="blah" id="ctl00_LeftContent_alternateImage4">
<img style="border-width: 0px;" src="assets/images/blahThumbnail.jpg"/>
</a>
I've found another question that allows me to add inline style to a control, but I want to add a class to the img that asp:Hyperlink generates.
Is it possible to do something similar to this answer:
myControl.Attributes.Add("style", "color:red");
Like, maybe?:
myControl.img.Attributes.Add("class", "blah");