Text alignment in datagrid
Hi
Can anyone tell me how to make the text in TextBox1 align to center, moving the ItemStyle tag around does not seem to do anything, the text is always aligned to the left.
Thanks
<asp:TemplateColumn HeaderText="Qty">
<HeaderStyle HorizontalAlign="Center" Width="6%"></HeaderStyle>
<ItemStyle HorizontalAlign="Center"></ItemStyle>
<ItemTemplate>
<asp:TextBox id=TextBox1 runat="server" Width="32px" Text='<%# DataBinder.Eval(Container.DataItem, "Quantity") %>'>
</asp:TextBox>
</ItemTemplate>
<FooterStyle HorizontalAlign="Center"></FooterStyle>
</asp:TemplateColumn>
|