I would like to localize all error messages like InvalidPasswordErrorMessage programmatically.
I know how to access controls like
CompareValidator PasswordCompare = CreateUserWizardStep1.ContentTemplateContainer.FindControl("PasswordCompare") as CompareValidator;
if (PasswordCompare != null)
{
PasswordCompare.ErrorMessage = ResourceLocalizationManager.GetResourceValue("Account.EnteredPasswordsDoNotMatch", Norvatech.Common.Context.Current.CurrentLanguage.PkId).LocalizationResourceValue;
PasswordCompare.ToolTip = ResourceLocalizationManager.GetResourceValue("Account.EnteredPasswordsDoNotMatch", Norvatech.C ...
Go to the complete details ...