In the webpart under Member/LogonMiniForm, there is a property "UserNameText" that has the following code in the setter:
public string UserNameText
{
get
{
return ValidationHelper.GetString(GetValue("UserNameText"), mUserNameText);
}
set
{
if (value.Trim() != string.Empty)
{
SetValue("UserNameText", value);
mUserNameText = value;
}
}
}
I need to set the text to empty. I could comment out the if(conditional check) so that it sets the empty string, but I'd like to know if there's a better way(as this may impact functionality in other places, not to mention upgrade issues).