Implemented interface member:
property
Page
System.Web.UI.MobileControls.IControlAdapter.Page
3 overrides of Page
System.Web.Mobile (3)
UI\MobileControls\Adapters\HtmlPageAdapter.cs (1)
299public override MobilePage Page
UI\MobileControls\Adapters\WmlPageAdapter.cs (1)
76public override MobilePage Page
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPageAdapter.cs (1)
90public override MobilePage Page {
48 references to Page
System.Web.Mobile (48)
UI\MobileControls\Adapters\ChtmlCalendarAdapter.cs (4)
165if (Page.IsPostBack && Control.VisibleDate == DateTime.MinValue) 178if (Page.IsPostBack) 180String controlId = Page.Request[Constants.EventSourceID]; 183List list = Page.FindControl(controlId) as List;
UI\MobileControls\Adapters\ChtmlFormAdapter.cs (1)
114String charset = Page.Response.Charset;
UI\MobileControls\Adapters\ControlAdapter.cs (2)
108return (MobileCapabilities)Page.Request.Browser; 275MobilePage page = Page;
UI\MobileControls\Adapters\HtmlControlAdapter.cs (1)
36return ((HtmlPageAdapter)Page.Adapter);
UI\MobileControls\Adapters\HtmlFormAdapter.cs (9)
123writer.WriteEncodedUrl(Page.RelativeFilePath); 128writer.Write(Page.UniqueFilePathSuffix); 131String queryStringText = Page.QueryStringText; 229String charset = Page.Response.Charset; 356String action = Page.ActiveForm.Action; 358String queryString = Page.QueryStringText; 432name = Page.Server.UrlDecode(queryString.Substring(si, ti-si)); 433value = Page.Server.UrlDecode(queryString.Substring(ti+1, i-ti-1)); 438value = Page.Server.UrlDecode(queryString.Substring(si, i-si));
UI\MobileControls\Adapters\HtmlSelectionListAdapter.cs (2)
130if (!Page.DesignMode) 315if (Page.DesignMode || String.IsNullOrEmpty(Control.Form.Action))
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (4)
147if (Page.IsPostBack && Control.VisibleDate == DateTime.MinValue) 160if (Page.IsPostBack) 162String controlId = Page.Request[MobilePage.HiddenPostEventSourceId]; 165List list = Page.FindControl(controlId) as List;
UI\MobileControls\Adapters\WmlControlAdapter.cs (1)
40return ((WmlPageAdapter)Page.Adapter);
UI\MobileControls\Adapters\WmlFormAdapter.cs (3)
59if (Page.Adapter.PersistCookielessData && 62Control == Page.ActiveForm ) 218Control sourceControl = Page.FindControl(eventSource);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (4)
143if (Page.IsPostBack && Control.VisibleDate == DateTime.MinValue) { 154if (Page.IsPostBack) { 155String controlId = Page.Request[Constants.EventSourceID]; 157List list = Page.FindControl(controlId) as List;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicControlAdapter.cs (6)
51return Page.Adapter as XhtmlPageAdapter; 180target = Page.Response.ApplyAppPathModifier(Control.TemplateSourceDirectory); 198String templateSourceDirectory = Page.TemplateSourceDirectory; 199String prefix = writer.EncodeUrlInternal(Page.Response.ApplyAppPathModifier(Page.TemplateSourceDirectory)); 402return(String) Page.ActiveForm.CustomAttributes[XhtmlConstants.StyleSheetLocationCustomAttribute];
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicFormAdapter.cs (10)
63writer.Write(Page.UniqueFilePathSuffix); 68String queryStringText = PreprocessQueryString(Page.QueryStringText); 117bool postBack = Page.ActiveForm.Action.Length == 0; 123else if (Page.ClientViewState == null) { 140if (Page.HasHiddenVariables()) { 142foreach (DictionaryEntry entry in Page.HiddenVariables) { 152String viewState = Page.ClientViewState; 379writer.WriteEncodedUrl(Page.RelativeFilePath); 387url = Page.MakePathAbsolute(Control.ResolveUrl(url)); 391writer.WriteEncodedUrl(Page.AbsoluteFilePath);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicImageAdapter.cs (1)
78source = Page.Server.UrlPathEncode(Control.ResolveUrl(source.Trim()));