Creating a Multi-Line Button Control

  • Thread starter Thread starter Nathan Sokalski
  • Start date Start date
N

Nathan Sokalski

I have a Button control whose text property is "Move To Archives". Because
this makes a relatively wide Button when the text is all one line, I want to
put a line break between the words "Move To" and "Archives". However, if I
specify the Text property as "Move To<br/>Archives" the "<br/>" simply shows
up on the Button. Is there any simple way to make a Button control's Text
property multi-line? (NOTE: I am writing my code using VB.NET and ASP.NET
2.0) Thanks.
 
html buttons don't support markup. you can use an image button or a link
button.


-- bruce (sqlwork.com)
 
Back
Top