在Label or TextBox  之前加
<p align="center">
<asp:Label id="Label1" runat="server"></asp:Label></p>

解决方案 »

  1.   

    TextBox
    Add in Page_Load
    TextBox1.Attributes["style"]+=" ;TEXT-ALIGN: center ";ListBox好像没有这个功能
      

  2.   

    在标签中加入“style="text-align:center"”如:
    <asp:label style="text-align:center" ....>
    不论HTML或Web控件均可如!更多设置参见CSS。
      

  3.   

    <asp:Label id=l1 Text="abc" style="width:100px;text-align:center" runat="server"/>
    <asp:TextBox id=tb1 Text="abc" style="text-align:center" runat="server"/>