Example #1
0
        public string Run(string name, string value, string className, int maxLength)
        {
            TextBoxControl textBoxControl = new TextBoxControl(name);

            textBoxControl.Value     = value;
            textBoxControl.CssClass  = className;
            textBoxControl.MaxLength = maxLength;

            return(textBoxControl.Render(RootView));
        }
Example #2
0
        public string Run(string name, string value, string className, int maxLength)
        {
            TextBoxControl textBoxControl = new TextBoxControl(name);

            textBoxControl.Value = value;
            textBoxControl.CssClass = className;
            textBoxControl.MaxLength = maxLength;

            return textBoxControl.Render(RootView);
        }