Ok, this should be simple but why isn't this working???? I've gotten version one to work, then i tried version two. Can you tell me why it's not working?
Version #1
Version #2
Version #1
<a href="#" id="tip"><img src="../../Images/Buttons/tipimage.gif" /></a> | |
<telerik:RadToolTip runat="server" ID="RadToolTip1" | |
Height="200px" | |
Width="200px" | |
TargetControlID="tip" | |
IsClientID="true" | |
Sticky="true" | |
Animation="Fade" | |
Position="BottomCenter" | |
RelativeTo="Element" | |
Skin="DWDS" | |
EnableEmbeddedSkins="false"> | |
<div> | |
<span style="color:Maroon; font-weight:bold;"> | |
<asp:Label ID="lblParticipantName2" runat="server" /> | |
</span> | |
</div> | |
</telerik:RadToolTip> |
Version #2
<asp:Image ID="tip" runat="server" ImageUrl="../../Images/Buttons/tipimage.gif" /> | |
<telerik:RadToolTip runat="server" ID="RadToolTip1" | |
Height="200px" | |
Width="200px" | |
TargetControlID="tip" | |
IsClientID="true" | |
Sticky="true" | |
Animation="Fade" | |
Position="BottomCenter" | |
RelativeTo="Element" | |
Skin="DWDS" | |
EnableEmbeddedSkins="false"> | |
<div> | |
<span style="color:Maroon; font-weight:bold;"> | |
<asp:Label ID="lblParticipantName2" runat="server" /> | |
</span> | |
</div> | |
</telerik:RadToolTip> |