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