I need to update the tooltip for a textbox in asp.net.
TextBox objTextBox;
objTextBox = new TextBox();
if (somecondition)
{
objTextBox.ReadOnly = true;
String processorClosedTooltip ="<html><p style='font-style:italic;color:blue;'>" +
"comments are not Editable</p></html> ";
objTextBox.ToolTip = processorClosedTooltip + "\n" + comment.ToString();
}
I would like the tooltip to be displayed in blue with an underline and italic styling.
*
- comments are not Editable
*