ich stehe gerade auf dem Schlauch... Wie bekomme ich folgende Tabelle zu div's?
<table>
<tr>
<td>
<dx:ASPxLabel runat="server" AssociatedControlID="txtUsername" Text="Benutzername" />
</td>
</tr>
<tr>
<td>
<dx:ASPxTextBox ID="txtUsername" runat="server" Width="200px">
<ValidationSettings ValidationGroup="LoginUserValidationGroup">
<RequiredField ErrorText="Bitte geben Sie einen Benutzernamen an" IsRequired="true" />
</ValidationSettings>
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td>
<dx:ASPxLabel ID="lblPassword" runat="server" AssociatedControlID="txtPassword" Text="Passwort" />
</td>
</tr>
<tr>
<td>
<dx:ASPxTextBox ID="txtPassword" runat="server" Password="true" Width="200px">
<ValidationSettings ValidationGroup="LoginUserValidationGroup">
<RequiredField ErrorText="Bitte geben Sie ein Passwort an" IsRequired="true" />
</ValidationSettings>
</dx:ASPxTextBox>
</td>
</tr>
<tr>
<td>
<dx:ASPxButton ID="btnLogin" runat="server" Text="Einloggen" ValidationGroup="LoginUserValidationGroup" OnClick="btnLogin_OnClick" Width="200px" />
</td>
</tr>
<tr>
<td>
<dx:ASPxButton ID="btnForgotPassword" runat="server" Text="Passwort vergessen" Width="200px" Visible="False" />
</td>
</tr>
</table>
Ich brauche einfach nur ein 5-Row-Layout für eine Login-Box:
Benutzername
[_____________]
Passwort
[_____________]
[___Login_____]
Danke und Gruß


