Ejemplo n.º 1
0
        internal static string GetName(this IDropDownRenderable instance, string suffix)
        {
            object value = null;
            string name  = instance.Name + suffix;

            if (instance.HiddenInputHtmlAttributes.TryGetValue("name", out value) && value != null)
            {
                name = value.ToString();
            }

            return(name);
        }
 public DropDownListHtmlBuilder(IDropDownRenderable component)
 {
     this.Component = component;
 }
Ejemplo n.º 3
0
 public DropDownListHtmlBuilder(IDropDownRenderable component)
 {
     this.Component = component;
 }