ToolTip Manager demo
In the C# code of this demo, there's a reference to details.Data, but I can't tell what Data is. I checked all the tabs and can't tell to what it's referring.
In the C# code of this demo, there's a reference to details.Data, but I can't tell what Data is. I checked all the tabs and can't tell to what it's referring.
private void UpdateToolTip(string elementID, UpdatePanel panel) { Control ctrl = Page.LoadControl("Information.ascx"); panel.ContentTemplateContainer.Controls.Add(ctrl); Information details = (Information)ctrl; details.Data = SelectItemsById(elementID); }