コントロールを使用して<asp:changepassword />
いますが、新しいパスワードテキストと他のフィールドを右ではなく左に揃える方法がわかりません。私はすでにクラスを追加して実行しようとしましtext-align: left
たが、整列は右側に残ります。
左揃えは可能ですか?
<asp:changepassword id="ChangePassword1" CssClass="teste" runat="server" continuedestinationpageurl="index.aspx"
oncancelbuttonclick="ChangePassword1_CancelButtonClick" onsendingmail="PasswordRecovery1_SendingMail"
changepasswordtitletext=" ">
<ChangePasswordButtonStyle CssClass="botaoAccaoBlue passwordbuttonsfix" />
<ContinueButtonStyle CssClass="botaoAccaoBlue passwordbuttonsfix" />
<CancelButtonStyle CssClass="botaoAccaoGray passwordbuttonsfix" />
</asp:changepassword>
そしてこれはPageLoadで:
ChangePassword1.ChangePasswordButtonText = Resources.Common.ResourceManager.GetString("ChangePassword", culture);
ChangePassword1.CancelButtonText = Resources.Common.ResourceManager.GetString("Cancel", culture);
ChangePassword1.PasswordLabelText = Resources.UserConst.ResourceManager.GetString("Password", culture);
ChangePassword1.ConfirmNewPasswordLabelText = Resources.Common.ResourceManager.GetString("ConfirmPassword", culture);
ChangePassword1.NewPasswordLabelText = Resources.Communication.ResourceManager.GetString("New", culture) + " " + Resources.UserConst.ResourceManager.GetString("Password", culture);