public static string GetPropertyOrDefault(this HtmlControl control, string propertyName, string defaultValue)
        {
            string ret;

            control.GetPropertyOrDefault(propertyName, defaultValue, out ret);
            return(ret);
        }