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