1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
//------------------------------------------------------------------------------
// <copyright file="HtmlPageAdapter.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System.Collections;
using System.Collections.Specialized;
using System.Diagnostics;
using System.IO;
using System.Text;
using System.Web.Mobile;
using System.Web.UI.MobileControls.Adapters;
using System.Security.Permissions;
#if COMPILING_FOR_SHIPPED_SOURCE
namespace System.Web.UI.MobileControls.ShippedAdapterSource
#else
namespace System.Web.UI.MobileControls.Adapters
#endif
{
/*
* HtmlPageAdapter class.
*
* Copyright (c) 2000 Microsoft Corporation
*/
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter"]/*' />
[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
[Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public class HtmlPageAdapter : HtmlControlAdapter, IPageAdapter
{
private IList _renderableForms = null;
private int _optimumPageWeight = 0;
private const int DefaultPageWeight = 4000;
private readonly int _defaultPageWeight;
private const String _postedFromOtherFile = ".";
private IDictionary _cookielessDataDictionary = null;
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.HtmlPageAdapter"]/*' />
public HtmlPageAdapter() : this(DefaultPageWeight)
{
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.HtmlPageAdapter1"]/*' />
protected internal HtmlPageAdapter(int defaultPageWeight)
{
_defaultPageWeight = defaultPageWeight;
SetPreferredEncodings(HttpContext.Current);
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.OptimumPageWeight"]/*' />
public virtual int OptimumPageWeight
{
get
{
if (_optimumPageWeight == 0)
{
_optimumPageWeight = CalculateOptimumPageWeight(_defaultPageWeight);
}
return _optimumPageWeight;
}
}
///////////////////////////////////////////////////////////////////////////
// Static method used for determining if device should use
// this adapter
///////////////////////////////////////////////////////////////////////////
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.DeviceQualifies"]/*' />
public static bool DeviceQualifies(HttpContext context)
{
String type = ((MobileCapabilities)context.Request.Browser).PreferredRenderingType;
bool javascriptSupported = context.Request.Browser.JavaScript;
bool qualifies = (type == MobileCapabilities.PreferredRenderingTypeHtml32) && javascriptSupported;
return qualifies;
}
///////////////////////////////////////////////////////////////////////////
// IControlAdapter implementation
///////////////////////////////////////////////////////////////////////////
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.Render"]/*' />
public override void Render(HtmlMobileTextWriter writer)
{
writer.BeginResponse();
if (RequiresPragmaNoCacheHeader())
{
Page.Response.AppendHeader("Pragma", "no-cache");
}
if (writer.SupportsMultiPart)
{
// -1 means it doesn't care about forms' total weight
_renderableForms = Page.ActiveForm.GetLinkedForms(-1);
Debug.Assert(_renderableForms != null, "_renderableForms is null");
foreach (Form form in _renderableForms)
{
RenderForm(writer, form);
}
}
else
{
RenderForm(writer, Page.ActiveForm);
}
writer.EndResponse();
}
private bool RequiresPragmaNoCacheHeader()
{
// We need to Assert ASP.NET Low permission because Request.ServerVariables
// requires it.
(new AspNetHostingPermission(AspNetHostingPermissionLevel.Low)).Assert();
String protocol = Page.Request.ServerVariables["SERVER_PROTOCOL"];
return (protocol == "HTTP/1.0");
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.RenderForm"]/*' />
public virtual void RenderForm(HtmlMobileTextWriter writer, Form form)
{
writer.BeginFile(GetFormUrl(form), "text/html", Page.Response.Charset);
writer.WriteFullBeginTag("html");
form.RenderControl(writer);
if (Device.RequiresDBCSCharacter)
{
// Insert a comment with a space
writer.Write("<!--\u3000-->");
}
writer.WriteEndTag("html");
writer.EndFile();
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.IsFormRendered"]/*' />
public virtual bool IsFormRendered(Form form)
{
Debug.Assert(_renderableForms != null, "_renderableForms is null");
return _renderableForms.Contains(form);
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.GetFormUrl"]/*' />
public String GetFormUrl(Form form)
{
if (form == Page.ActiveForm)
{
return Page.Request.Url.ToString();
}
else
{
return form.ClientID + ".html";
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.RenderPostBackEvent"]/*' />
public virtual void RenderPostBackEvent(HtmlMobileTextWriter writer,
String target,
String argument)
{
writer.Write("javascript:__doPostBack('");
writer.Write(target);
writer.Write("','");
writer.Write(argument);
writer.Write("')");
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.RenderUrlPostBackEvent"]/*' />
public virtual void RenderUrlPostBackEvent(HtmlMobileTextWriter writer,
String target,
String argument)
{
writer.WriteEncodedUrl(Page.RelativeFilePath);
writer.Write("?");
// Encode ViewStateID=.....&__ET=controlid&__EA=value in URL
// Note: the encoding needs to be agreed with the page
// adapter which handles the post back info
String pageState = Page.ClientViewState;
if (pageState != null)
{
writer.WriteUrlParameter(MobilePage.ViewStateID, pageState);
writer.Write("&");
}
writer.WriteUrlParameter(EventSourceKey, target);
writer.Write("&");
writer.WriteUrlParameter(EventArgumentKey, argument);
RenderHiddenVariablesInUrl(writer);
// Unique file path suffix is used for identify if query
// string text is present. Corresponding code needs to agree
// on this. Even if the query string is empty, we still need
// to output the suffix to indicate this. (this corresponds
// to the code that handles the postback)
writer.Write('&');
writer.Write(Constants.UniqueFilePathSuffixVariable);
String queryStringText = Page.QueryStringText;
if (queryStringText != null && queryStringText.Length > 0)
{
writer.Write('&');
writer.Write(queryStringText);
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.EventSourceKey"]/*' />
protected virtual String EventSourceKey
{
get
{
return MobilePage.HiddenPostEventSourceId;
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.EventArgumentKey"]/*' />
protected virtual String EventArgumentKey
{
get
{
return MobilePage.HiddenPostEventArgumentId;
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.RenderHiddenVariables"]/*' />
protected void RenderHiddenVariables(HtmlMobileTextWriter writer)
{
if (Page.HasHiddenVariables())
{
String hiddenVariablePrefix = MobilePage.HiddenVariablePrefix;
foreach (DictionaryEntry entry in Page.HiddenVariables)
{
if (entry.Value != null)
{
writer.WriteHiddenField(hiddenVariablePrefix + (String)entry.Key,
(String)entry.Value);
}
}
}
}
private void RenderHiddenVariablesInUrl(HtmlMobileTextWriter writer)
{
if (Page.HasHiddenVariables())
{
String hiddenVariablePrefix = MobilePage.HiddenVariablePrefix;
foreach (DictionaryEntry entry in Page.HiddenVariables)
{
writer.Write("&");
writer.WriteUrlParameter(hiddenVariablePrefix + (String)entry.Key,
(String)entry.Value);
}
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.RenderPostBackHeader"]/*' />
public virtual void RenderPostBackHeader(HtmlMobileTextWriter writer, Form form)
{
bool postBack = form.Action.Length == 0;
RenderPageState(writer);
writer.WriteHiddenField(EventSourceKey, postBack ? "" : _postedFromOtherFile);
writer.WriteHiddenField(EventArgumentKey, "");
RenderHiddenVariables(writer);
writer.Write("<script language=javascript><!--\r\n");
writer.Write("function __doPostBack(target, argument){\r\n");
writer.Write(" var theform = document.");
writer.Write(form.ClientID);
writer.Write("\r\n");
if (form.Action.Length > 0)
{
writer.Write(" theform.action = \"\"\r\n");
}
writer.Write(" theform.");
writer.Write(EventSourceKey);
writer.Write(".value = target\r\n");
writer.Write(" theform.");
writer.Write(EventArgumentKey);
writer.Write(".value = argument\r\n");
writer.Write(" theform.submit()\r\n");
writer.Write("}\r\n");
writer.Write("// -->\r\n");
writer.Write("</script>\r\n");
}
///////////////////////////////////////////////////////////////////////////
// IPageAdapter implementation
///////////////////////////////////////////////////////////////////////////
private MobilePage _page;
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.Page"]/*' />
public override MobilePage Page
{
get
{
return _page;
}
set
{
_page = value;
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.CookielessDataDictionary"]/*' />
public IDictionary CookielessDataDictionary
{
get
{
return _cookielessDataDictionary;
}
set
{
_cookielessDataDictionary = value;
}
}
private bool _persistCookielessData = true;
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.PersistCookielessData"]/*' />
public bool PersistCookielessData
{
get
{
return _persistCookielessData;
}
set
{
_persistCookielessData = value;
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.CreateTextWriter"]/*' />
public virtual HtmlTextWriter CreateTextWriter(TextWriter writer)
{
return new HtmlMobileTextWriter(writer, Device);
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.DeterminePostBackMode"]/*' />
public virtual NameValueCollection DeterminePostBackMode(
HttpRequest request,
String postEventSourceID,
String postEventArgumentID,
NameValueCollection baseCollection)
{
if (baseCollection != null &&
baseCollection[EventSourceKey] == _postedFromOtherFile)
{
return null;
}
return baseCollection;
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.CacheVaryByHeaders"]/*' />
public virtual IList CacheVaryByHeaders
{
get
{
return null;
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.HandleError"]/*' />
public virtual bool HandleError(Exception e, HtmlTextWriter writer)
{
return false;
}
internal void RenderPageState(HtmlMobileTextWriter writer)
{
String viewState = Page.ClientViewState;
if (viewState != null)
{
writer.WriteHiddenField(MobilePage.ViewStateID, viewState);
}
}
/// <include file='doc\HtmlPageAdapter.uex' path='docs/doc[@for="HtmlPageAdapter.HandlePagePostBackEvent"]/*' />
public virtual bool HandlePagePostBackEvent(String eventSource, String eventArgument)
{
return false;
}
internal static void SetPreferredEncodings(HttpContext context) {
// context can be null when in design mode
if (context == null) {
return;
}
//handle preferred response and request encoding here
MobileCapabilities caps = (MobileCapabilities)context.Request.Browser;
if(caps != null) {
string preferredResponseEncoding = (string)caps["preferredResponseEncoding"];
string preferredRequestEncoding = (string)caps["preferredRequestEncoding"];
if(preferredResponseEncoding != null && preferredResponseEncoding.Length > 0) {
context.Response.ContentEncoding = Encoding.GetEncoding(preferredResponseEncoding);
}
if(preferredRequestEncoding != null && preferredRequestEncoding.Length > 0) {
context.Request.ContentEncoding = Encoding.GetEncoding(preferredRequestEncoding);
}
}
}
}
}
|