Creating a Multi-Line Button Control

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.
 
B

bruce barker

html buttons don't support markup. you can use an image button or a link
button.


-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top