27 references to Control
System.Web.Mobile (27)
UI\MobileControls\Adapters\ChtmlTextBoxAdapter.cs (2)
32if (Control.Numeric) 38if (!Control.Password)
UI\MobileControls\Adapters\HtmlTextBoxAdapter.cs (18)
42_staticValue = Control.Text; 55if ((Control.Text == null || Control.Text.Length > 0) && !Control.Password) 58writer.WriteText(Control.Text, true); 61if (Control.Size > 0) 63writer.WriteAttribute("size", Control.Size.ToString(CultureInfo.InvariantCulture)); 65if (Control.MaxLength > 0) 67writer.WriteAttribute("maxlength", Control.MaxLength.ToString(CultureInfo.InvariantCulture)); 69if (Control.Password) 76writer.ExitLayout(Style, Control.BreakAfter); 85renderName = Control.UniqueID.Replace(':', ','); 89renderName = Control.UniqueID; 101if (Control.Form.Action.Length > 0 || (!IsViewStateEnabled() && Control.Text != _staticValue)) 103writer.WriteHiddenField(Control.UniqueID, Control.Text); 109Control ctl = Control;
UI\MobileControls\Design\Adapters\DesignerTextBoxAdapter.cs (7)
45bool pwd = Control.Password; 46int size = Control.Size; 49int maxWidth = DesignerAdapterUtil.GetMaxWidthToFit(Control, out templateStatus); 57else if (DesignerAdapterUtil.InMobileUserControl(Control)) 142String width = DesignerAdapterUtil.GetWidth(Control); 156if (!String.IsNullOrEmpty(Control.Text)) 159writer.WriteText(Control.Text, true);