26 references to Control
System.Web.Mobile (26)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicFormAdapter.cs (26)
48writer.WriteAttribute ("id", Control.ClientID); 49writer.WriteAttribute ("method", Control.Method.ToString().ToLower(CultureInfo.CurrentCulture)); 52if(Control.Action.Length > 0) { 53if(Control.Action.IndexOf("?", StringComparison.Ordinal) != -1) { 65if (Control.Method != FormMethod.Get && 66Control.Action.Length == 0) { // VSWhidbey 411176: We don't include QueryStringText if Action is explicitly set 98RenderOffPageVariables(writer, Control, Control.CurrentPage); 166if(Control.HasControls()) { 167foreach(Control child in Control.Controls) { 168if(Control.Footer == child) { 185if (Control.Header != null && !secondaryUIInHeaderOrFooter) { 186Control.Header.RenderControl (writer); 191if (Control.Footer != null && !secondaryUIInHeaderOrFooter) { 192Control.Footer.RenderControl (writer); 264return IsAncestor(Control.Header, control); 269return IsAncestor(Control.Footer, control); 286PagerStyle pagerStyle = Control.PagerStyle; 288int pageCount = Control.PageCount; 292int page = Control.CurrentPage; 358writer.Write(Control.UniqueID); 374if (Control.Action.Length > 0) { 375String url = Control.ResolveUrl(PreprocessQueryString(Control.Action)); 384String url = PreprocessQueryString(Control.Action); 387url = Page.MakePathAbsolute(Control.ResolveUrl(url));