12-06-2005 02:10 PM
12-06-2005 05:42 PM
You can do this via the CSS text-align attribute. For example:
<asp:Label
runat="server"
ID="label"
Text="Test"
Width="300px"
BorderStyle="Solid"
style="text-align:right;"
/>
- Elton