Scusate la banalità ma non son molto bravo in HTML , ho messo tre dropdown uno sotto l'altro con la label a sinistra.
Ho necessità di incolonnarle per bene allineate e nel modo in cui l'ho fatto non va bene, posto il codice:
codice:
<div align="center">
   <p align="center" style="font-weight: bolder">
       Regione
     <asp:DropDownList ID="DrpRegioni" runat="server" 
         DataSourceID="SqlDataSource1" DataTextField="Nome" DataValueField="IDRegione" 
         Height="25px" Width="169px">
     </asp:DropDownList>
     <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
         ConnectionString="<%$ ConnectionStrings:DBNewShopConnectionString2 %>" 
         SelectCommand="SELECT [Nome], [IDRegione] FROM [gRegioni]">
     </asp:SqlDataSource>
     </p>
 </div> 
 <div align="center">
      <p align="center" style="font-weight: bold">
       Provincia
       <asp:DropDownList ID="DrpProv" runat="server"  Height="25px" Width="169px">
       </asp:DropDownList>
      </p>
  </div>
  <div align="center">
      <p align="center" style="font-weight: bold">
       Città
       <asp:DropDownList ID="DrpCitta" runat="server"  Height="25px" Width="169px">
       </asp:DropDownList>
      </p>
  </div>
Potete aiutarmi grazie e scusate !
Saluti