29 references to Control
System.Web.Mobile (29)
UI\MobileControls\Adapters\ChtmlFormAdapter.cs (3)
33
if (!Device.RequiresOutputOptimization ||
Control
.PageCount > 1)
38
return IsFormTagNeeded(
Control
);
142
writer.Write(
Control
.UniqueID);
UI\MobileControls\Adapters\HtmlFormAdapter.cs (26)
54
String title =
Control
.Title;
97
writer.WriteAttribute("id",
Control
.ClientID);
98
writer.WriteAttribute("name",
Control
.ClientID);
99
writer.WriteAttribute("method",
Control
.Method.ToString().ToLower(CultureInfo.InvariantCulture));
102
if (
Control
.Action.Length > 0)
105
String url =
Control
.ResolveUrl(
Control
.Action);
129
if (
Control
.Method != FormMethod.Get)
144
PageAdapter.RenderPostBackHeader(writer,
Control
);
148
RenderOffPageVariables(writer,
Control
,
Control
.CurrentPage);
157
if (secondaryUIControl != null && secondaryUIControl.Form ==
Control
)
164
if(
Control
.Header != null && !secondaryUIInHeaderOrFooter)
166
Control
.Header.RenderControl(writer);
169
if(
Control
.Footer != null && !secondaryUIInHeaderOrFooter)
171
Control
.Footer.RenderControl(writer);
178
if(
Control
.HasControls())
180
foreach(Control child in
Control
.Controls)
182
if(
Control
.Footer == child)
240
Form form = this.
Control
as Form;
303
PagerStyle pagerStyle =
Control
.PagerStyle;
305
int pageCount =
Control
.PageCount;
310
int page =
Control
.CurrentPage;
363
Control
.Method == FormMethod.Get)
525
return IsAncestor(
Control
.Header, control);
530
return IsAncestor(
Control
.Footer, control);