When I apply this do I have to edit the html or is there some way to deal
with the properties of the textbox. I don't see any style property.
Thanks,
Gary
When I apply this do I have to edit the html or is there some way to deal
with the properties of the textbox. I don't see any style property.
Thanks,
Gary
Thanks for your reply. The Style attribute is avaliable on html element
(html controls) such as
<input type="text" style="text-align:right;" .... >
For server control such as ASP.net TextBox, we need to set its css style
via code, for example in page_load, we can add the below code to add the
text-align style for a ASP.NET TextBox(txtServer)
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.