is it possible and how to have strategy property.
[Display(Name = "Password", GroupName = "General", Order = 1, Description = "Password used to login to web")]
public string Password
{
get { return sPassword; }
set { sPassword = value; }
}
and found adding
[DataType(DataType.Password)]
Thanks for any hints.
Pavel

Comment