I am using a rad tool tip who's values are set in a user control. I am using an 'OnAjaxupdate' method to load the usercontrol and display the tooltip.
But when i hover the mouse over my image icon (targetcontrol of the radtooltipmanager); i get a pop up window prompting
"radToolTipManager response error. An unknown server error has occured. The status code returned is 500"
Looks like this is happens either if I link a css class in the loaded user control or if I add a style inside user control. Look at my below code inside a user control
What does the error mean?
My code files are
1.usercontrol.ascx (defined the user control),
2.usercontrol.ascx.cs(defined labels and textboxes as properties whose values are set in the default.aspx.cs page),
3.default.aspx (web page) and
4.default.aspx.cs(code behind having 'OnAjaxUpdate' method used for loading usercontrol and populationg the tooltip with values)
Also i am using an external css file to manage the look of the tooltip. But it has no effect on the tooltip content. Sohow can i change the font-size , color etc of the content inside the tooltip by using CSS or inline styles?
Any help in this is highly appreciated...
But when i hover the mouse over my image icon (targetcontrol of the radtooltipmanager); i get a pop up window prompting
"radToolTipManager response error. An unknown server error has occured. The status code returned is 500"
Looks like this is happens either if I link a css class in the loaded user control or if I add a style inside user control. Look at my below code inside a user control
<style type="text/css"> |
.label |
{ |
color: Blue; |
font-family: Tahoma; |
font-size: 1em; |
font-weight:bold |
} |
.value |
{ |
color: black; |
font-family: Tahoma; |
font-size: .9em; |
} |
</style> |
<asp:UpdatePanel ID="pnl" runat="server" UpdateMode="Conditional"> |
<ContentTemplate> |
<table border = "0" align = "center" width = "100%" > |
<tr> |
<td><asp:Label ID="lblContent" runat="server" Text="Content File:" class = "label"></asp:Label></td> |
<td><asp:Label ID="lblContentUrl" runat="server" class = "value"></asp:Label></td> |
</tr> |
<tr> |
<td><asp:Label ID="lblTotalLinks" runat="server" Text="Total Links:" class = "label"></asp:Label></td> |
<td><asp:Label ID="lblTotalLinksValue" runat="server" class = "value"></asp:Label></td> |
</tr> |
<tr> |
<td><asp:Label ID="lblVersion" runat="server" Text="Version:" class = "label"></asp:Label></td> |
<td><asp:Label ID="lblVersionValue" runat="server" class = "value"></asp:Label></td> |
</tr> |
<tr> |
<td><asp:Label ID="lblCheckedOut" runat="server" Text="Checked Out:" class = "label" ></asp:Label></td> |
<td><asp:Label ID="lblCheckedOutValue" runat="server" class = "value"></asp:Label></td> |
</tr> |
<tr> |
<td><asp:Label ID="lblCreatedOn" runat="server" Text="Created On:" class = "label" ></asp:Label></td> |
<td><asp:Label ID="lblCreatedOnValue" runat="server" class = "value"></asp:Label></td> |
</tr> |
<tr> |
<td><asp:Label ID="lblLastModifiedOn" runat="server" Text="Last Modified On:" class = "label"></asp:Label></td> |
<td><asp:Label ID="lblLastModifiedOnValue" runat="server" class = "value"></asp:Label></td> |
</tr> |
</table> |
</ContentTemplate> |
</asp:UpdatePanel> |
What does the error mean?
My code files are
1.usercontrol.ascx (defined the user control),
2.usercontrol.ascx.cs(defined labels and textboxes as properties whose values are set in the default.aspx.cs page),
3.default.aspx (web page) and
4.default.aspx.cs(code behind having 'OnAjaxUpdate' method used for loading usercontrol and populationg the tooltip with values)
Also i am using an external css file to manage the look of the tooltip. But it has no effect on the tooltip content. Sohow can i change the font-size , color etc of the content inside the tooltip by using CSS or inline styles?
Any help in this is highly appreciated...