Good morning once again.
Today I am trying to apply an image to the RadImageButton, however only the Text is showing, never the image. Not sure what the issue is.
Note: there is no code behind for this button yet, its just static for testing purposes.
<telerik:RadImageButton ID="RadImageButton1" runat="server" Text="Cat II/III" Width="50px" Height="50px">
<Image Url="Content/Images/Cat3.png" />
</telerik:RadImageButton>
I discovered the error. The image was larger than the "Width" and Height" parameters defined in the control. After I resized the image down, it displayed properly.
Learning as I go.....