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.
--
Nathan Sokalski
njsokal
@hotmail.com
http://www.nathansokalski.com/
html buttons don't support markup. you can use an image button or a link
button.
-- bruce (sqlwork.com)
Nathan Sokalski wrote:
> 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.