In a VisualBasic2010 web app, which control in the toolbox should I use to display and hide a multi-line block of text on the page?
I will have a linkbutton called ‘hide’ following the next, and when the user clicks it, the .visible property of the text will be set false.
I’d go with making html server-side tag like
and change it visible property in code behind.
Very basic solution, but works great for me.
Other option is that you can use Tooltip control aswell.