Base:
property
Page
System.Web.UI.MobileControls.Adapters.ControlAdapter.Page
Implemented interface members:
property
Page
System.Web.UI.MobileControls.IControlAdapter.Page
property
Page
System.Web.UI.MobileControls.IPageAdapter.Page
24 references to Page
System.Web.Mobile (24)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPageAdapter.cs (24)
232String cssLocation = (String) Page.ActiveForm.CustomAttributes[XhtmlConstants.StyleSheetLocationCustomAttribute]; 320writer.SetCacheKey(Page.Cache); 324writer.SetSessionKey(Page.Session); 350if (Page.ActiveForm.Paginate && Page.ActiveForm.Action.Length > 0) { 351Page.ActiveForm.Paginate = false; 359if (Page.Request.Browser["requiresPragmaNoCacheHeader"] == "true") { 360Page.Response.AppendHeader("Pragma", "no-cache"); 370Page.ActiveForm.RenderControl(writer); 376writer.BeginFile (Page.Request.Url.ToString (), Page.Device.PreferredRenderingMime, Page.Response.Charset); 390if (Page.ActiveForm.Title != null) { 391writer.WriteEncodedText(Page.ActiveForm.Title); 405Page.Cache.Insert(writer.CacheKey, writer.GetStyles (), null, DateTime.MaxValue, _cacheExpirationTime); 408Page.Session[writer.SessionKey] = writer.GetStyles(); 416Style formStyle = ((ControlAdapter)Page.ActiveForm.Adapter).Style; 433if (Page.HasHiddenVariables()) { 435foreach (DictionaryEntry entry in Page.HiddenVariables) { 444Form activeForm = Page.ActiveForm; 477writer.WriteEncodedUrl(Page.AbsoluteFilePath); 480writer.WriteEncodedUrl(Page.RelativeFilePath); 487String pageState = Page.ClientViewState; 505String queryStringText = PreprocessQueryString(Page.QueryStringText);