Have a user control to simply contains a Tooltip that I would like loaded on my Master page. Stepping through the code I can see it is loaded with data and if I hover over my icon it will show the tooltip however the tooltip only contains static text, not the loaded values.
Page_help.ascx
Master page
Page_help.ascx
<%@ Control Language="VB" AutoEventWireup="false" Inherits="FMS4.X.Common_Page_Help" Codebehind="Page_Help.ascx.vb" %><telerik:RadToolTip runat="server" ID="RadToolTip1" Width="400px" ShowEvent="onmouseover" RelativeTo="Element" Animation="Resize" TargetControlID="HelpImg" IsClientID="false" HideEvent="ManualClose" Position="TopRight" Overlay="True" EnableDataCaching ="True"> <table> <tr><td style="text-align: center;" class="Header1"><asp:Label ID="PageTitle" runat="server"></asp:Label></td></tr> <tr><td style="text-align: justify;"><asp:Label ID="PageDesc" runat="server" Text="Label"></asp:Label></td></tr> <tr><td> </td></tr> <tr><td style="text-align: center;" class="Header1">Page Help</td></tr> <tr><td style="text-align: justify;"><asp:Label ID="PageHelp" runat="server" Text="Label"></asp:Label></td></tr> </table></telerik:RadToolTip>Master page
<%@ Register Src="~/Common/Page_Help.ascx" TagName="PageHelp" TagPrefix="uc1" %><div style="text-align:right; width: 98%; vertical-align: middle;"> <telerik:RadToolTipManager ID="RadToolTipManager1" runat="server" /> <uc1:PageHelp ID="PageHelp" runat="server" /> <asp:Image ID="HelpImg" runat="server" ImageUrl="~/images/help-icon.png" AlternateText="Page Help" /></div>