How to align the text in textbox to the right. The default is left aligned.
Thanx
You can do that in the Style attribute (style="text-align: right;") , for example:
<asp:TextBoxID="TextBox1"runat="server"Text="test"style="text-align: right;" />Or specify text-align:right; in a CSS class and use that cssClass on you Textbox
0 comments:
Post a Comment