Button text in two lines [modified]
-
How to get the text displayed in two lines for an asp:Button control using C#.Net. for example : so "Find an Existing" should be in first line and "product ID" should display in second line -- modified at 16:02 Thursday 28th September, 2006
-
How to get the text displayed in two lines for an asp:Button control using C#.Net. for example : so "Find an Existing" should be in first line and "product ID" should display in second line -- modified at 16:02 Thursday 28th September, 2006
I'm afraid you cannot as the button server control normally renders to an input element (either submit or button type) that bascially cannot contain more than one line. So your chance is the button[^] element or rethink about your UI, for example consider an Image button or Link button instead that may do what you need.
-
How to get the text displayed in two lines for an asp:Button control using C#.Net. for example : so "Find an Existing" should be in first line and "product ID" should display in second line -- modified at 16:02 Thursday 28th September, 2006