The below coding is how I add a background image on a button on my webpage. It can work on IE9, Firefox and Chrome:
<td>
<input id="btn1" style="width: 25px; height: 25px; background-image: url('images/refresh.png'); background-repeat: no-repeat;" type="button" onclick="Get()"/>
</td>
But when I use IE6, it does not show the image. Just an empty button.
Do you guys know how do we put the image on a button that will shown on IE9 as well as IE6?