Is there a way to have ToolTip on web control (ImageButton to be specific) that looks like this in Mozilla Firefox browser:
John Smith Age 24 Gender: male ...
Tried Environment.NewLine, \n, \r\n, @""(with "" string literal spanning over several lines of code). All these things work perfectly in Internet Explorer 7, but in Mozilla all NewLine's and \n's are replaced by whitespaces.
Any workaround for this? And are there other browsers ignoring NewLine's in similar way?
Warning: Mozilla shows example text above ("John Smith" and so on) in one line, like in tooltips I just talked about. So let's repeat what I want to see in tooltip for Mozilla users:
John Smith
Age 24
Gender: male
...
(No blank lines should be shown after each line of data, but Mozilla shows either all data in single line or separated by blank lines - no compromises unfortunately...)