Right Justify Textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I right justify input data in a textbox? I have some textboxes that
are used to input numbers, and I would like to right justify them.
 
Hi Brian,
I am using a textbox on a web application, and I also want to right
justify on some cells in a datagrid, while editing. The textbox doesn't
allow for TextAlign. I checked the help, and it looks like this may be for a
windows form. I thought there might be something under styles or controls,
but haven't been able to find anything.
 
Ahok, sorry, I assumed it was Windows Forms.

Just do this for ASP.NET:

<asp:TextBox id="TextBox1" dir=rtl runat="server"></asp:TextBox>

I'm not sure if there is a programatic way to do this.

Hope that helps.

--
Brian Delahunty
Ireland

http://briandela.com/blog

INDA SouthEast - http://southeast.developers.ie/ - The .NET usergroup I
started in the southeast of Ireland.
 
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
'Put user code to initialize the page here
Dim frm As Control = Me.FindControl("Form1")
Dim ctl As Control
For Each ctl In frm.Controls
If TypeOf ctl Is TextBox Then
DirectCast(ctl, TextBox).Style("TEXT-ALIGN") = "right"
End If
End Sub

u can changed left, center.
regards,
 

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

Back
Top