| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811 |
- //
- // System.Web.UI.Page.cs
- //
- // Authors:
- // Duncan Mak ([email protected])
- // Gonzalo Paniagua ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002,2003 Ximian, Inc. (http://www.ximian.com)
- // Copyright (C) 2003,2005 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.ComponentModel;
- using System.ComponentModel.Design;
- using System.ComponentModel.Design.Serialization;
- using System.Globalization;
- using System.IO;
- using System.Security.Cryptography;
- using System.Security.Permissions;
- using System.Security.Principal;
- using System.Text;
- using System.Threading;
- using System.Web;
- using System.Web.Caching;
- using System.Web.Configuration;
- using System.Web.SessionState;
- using System.Web.Util;
- using System.Web.UI.HtmlControls;
- using System.Web.UI.WebControls;
- using System.Reflection;
- #if NET_2_0
- using System.Web.UI.Adapters;
- using System.Collections.Generic;
- #endif
- namespace System.Web.UI
- {
- // CAS
- [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- #if !NET_2_0
- [RootDesignerSerializer ("Microsoft.VSDesigner.WebForms.RootCodeDomSerializer, " + Consts.AssemblyMicrosoft_VSDesigner, "System.ComponentModel.Design.Serialization.CodeDomSerializer, " + Consts.AssemblySystem_Design, true)]
- #endif
- [DefaultEvent ("Load"), DesignerCategory ("ASPXCodeBehind")]
- [ToolboxItem (false)]
- #if NET_2_0
- [Designer ("Microsoft.VisualStudio.Web.WebForms.WebFormDesigner, " + Consts.AssemblyMicrosoft_VisualStudio_Web, typeof (IRootDesigner))]
- #else
- [Designer ("Microsoft.VSDesigner.WebForms.WebFormDesigner, " + Consts.AssemblyMicrosoft_VSDesigner, typeof (IRootDesigner))]
- #endif
- public partial class Page : TemplateControl, IHttpHandler
- {
- static string machineKeyConfigPath = "system.web/machineKey";
- #if NET_2_0
- private bool _eventValidation = true;
- private object [] _savedControlState;
- private bool _doLoadPreviousPage;
- string _focusedControlID;
- bool _hasEnabledControlArray;
- #endif
- private bool _viewState = true;
- private bool _viewStateMac;
- private string _errorPage;
- private bool is_validated;
- private bool _smartNavigation;
- private int _transactionMode;
- private ValidatorCollection _validators;
- private bool renderingForm;
- private string _savedViewState;
- private ArrayList _requiresPostBack;
- private ArrayList _requiresPostBackCopy;
- private ArrayList requiresPostDataChanged;
- private IPostBackEventHandler requiresRaiseEvent;
- private NameValueCollection secondPostData;
- private bool requiresPostBackScript;
- private bool postBackScriptRendered;
- bool handleViewState;
- string viewStateUserKey;
- NameValueCollection _requestValueCollection;
- string clientTarget;
- ClientScriptManager scriptManager;
- bool allow_load; // true when the Form collection belongs to this page (GetTypeHashCode)
- PageStatePersister page_state_persister;
- CultureInfo _appCulture;
- CultureInfo _appUICulture;
- // The initial context
- private HttpContext _context;
-
- // cached from the initial context
- HttpApplicationState _application;
- HttpResponse _response;
- HttpRequest _request;
- Cache _cache;
-
- HttpSessionState _session;
-
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- public
- #else
- protected
- #endif
- const string postEventArgumentID = "__EVENTARGUMENT";
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- public
- #else
- protected
- #endif
- const string postEventSourceID = "__EVENTTARGET";
- #if NET_2_0
- const string ScrollPositionXID = "__SCROLLPOSITIONX";
- const string ScrollPositionYID = "__SCROLLPOSITIONY";
- const string EnabledControlArrayID = "__enabledControlArray";
- #endif
- #if NET_2_0
- internal const string LastFocusID = "__LASTFOCUS";
- internal const string CallbackArgumentID = "__CALLBACKARGUMENT";
- internal const string CallbackSourceID = "__CALLBACKTARGET";
- internal const string PreviousPageID = "__PREVIOUSPAGE";
- HtmlHead htmlHeader;
-
- MasterPage masterPage;
- string masterPageFile;
-
- Page previousPage;
- bool isCrossPagePostBack;
- bool isPostBack;
- bool isCallback;
- ArrayList requireStateControls;
- HtmlForm _form;
- string _title;
- string _theme;
- string _styleSheetTheme;
- Hashtable items;
- bool _maintainScrollPositionOnPostBack;
- private bool asyncMode = false;
- private TimeSpan asyncTimeout;
- private const double DefaultAsyncTimeout = 45.0;
- private List<PageAsyncTask> parallelTasks;
- private List<PageAsyncTask> serialTasks;
- private ViewStateEncryptionMode viewStateEncryptionMode;
- private bool controlRegisteredForViewStateEncryption = false;
- #endif
- #region Constructor
- public Page ()
- {
- scriptManager = new ClientScriptManager (this);
- Page = this;
- ID = "__Page";
-
- #if NET_2_0
- PagesSection ps = WebConfigurationManager.GetSection ("system.web/pages") as PagesSection;
- if (ps != null) {
- asyncTimeout = ps.AsyncTimeout;
- viewStateEncryptionMode = ps.ViewStateEncryptionMode;
- } else {
- asyncTimeout = TimeSpan.FromSeconds (DefaultAsyncTimeout);
- viewStateEncryptionMode = ViewStateEncryptionMode.Auto;
- }
- #endif
- }
- #endregion
- #region Properties
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public HttpApplicationState Application {
- get { return _application; }
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected bool AspCompatMode {
- #if NET_2_0
- get { return false; }
- #endif
- set { throw new NotImplementedException (); }
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public bool Buffer {
- get { return Response.BufferOutput; }
- set { Response.BufferOutput = value; }
- }
- #else
- protected bool Buffer {
- set { Response.BufferOutput = value; }
- }
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public Cache Cache {
- get {
- if (_cache == null)
- throw new HttpException ("Cache is not available.");
- return _cache;
- }
- }
- #if NET_2_0
- [EditorBrowsableAttribute (EditorBrowsableState.Advanced)]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false), DefaultValue ("")]
- [WebSysDescription ("Value do override the automatic browser detection and force the page to use the specified browser.")]
- public string ClientTarget {
- get { return (clientTarget == null) ? "" : clientTarget; }
- set {
- clientTarget = value;
- if (value == "")
- clientTarget = null;
- }
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public int CodePage {
- get { return Response.ContentEncoding.CodePage; }
- set { Response.ContentEncoding = Encoding.GetEncoding (value); }
- }
- #else
- protected int CodePage {
- set { Response.ContentEncoding = Encoding.GetEncoding (value); }
- }
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public string ContentType {
- get { return Response.ContentType; }
- set { Response.ContentType = value; }
- }
- #else
- protected string ContentType {
- set { Response.ContentType = value; }
- }
- #endif
- protected override HttpContext Context {
- get {
- if (_context == null)
- return HttpContext.Current;
- return _context;
- }
- }
- #if NET_2_0
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public string Culture {
- get { return Thread.CurrentThread.CurrentCulture.Name; }
- set { Thread.CurrentThread.CurrentCulture = GetPageCulture (value, Thread.CurrentThread.CurrentCulture); }
- }
- #else
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected string Culture {
- set { Thread.CurrentThread.CurrentCulture = new CultureInfo (value); }
- }
- #endif
- #if NET_2_0
- public virtual bool EnableEventValidation {
- get { return _eventValidation; }
- set {
- if (IsInited)
- throw new InvalidOperationException ("The 'EnableEventValidation' property can be set only in the Page_init, the Page directive or in the <pages> configuration section.");
- _eventValidation = value;
- }
- }
- #endif
- [Browsable (false)]
- public override bool EnableViewState {
- get { return _viewState; }
- set { _viewState = value; }
- }
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- public
- #else
- protected
- #endif
- bool EnableViewStateMac {
- get { return _viewStateMac; }
- set { _viewStateMac = value; }
- }
- #if NET_1_1
- internal bool EnableViewStateMacInternal {
- get { return _viewStateMac; }
- set { _viewStateMac = value; }
- }
- #endif
-
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false), DefaultValue ("")]
- [WebSysDescription ("The URL of a page used for error redirection.")]
- public string ErrorPage {
- get { return _errorPage; }
- set {
- HttpContext ctx = Context;
-
- _errorPage = value;
- if (ctx != null)
- ctx.ErrorPage = value;
- }
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected ArrayList FileDependencies {
- set {
- if (Response != null)
- Response.AddFileDependencies (value);
- }
- }
- [Browsable (false)]
- #if NET_2_0
- [EditorBrowsable (EditorBrowsableState.Never)]
- #endif
- public override string ID {
- get { return base.ID; }
- set { base.ID = value; }
- }
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public bool IsPostBack {
- get {
- #if NET_2_0
- return isPostBack;
- #else
- return _requestValueCollection != null;
- #endif
- }
- }
- [EditorBrowsable (EditorBrowsableState.Never), Browsable (false)]
- public bool IsReusable {
- get { return false; }
- }
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public bool IsValid {
- get {
- if (!is_validated)
- throw new HttpException (Locale.GetText ("Page hasn't been validated."));
- #if NET_2_0
- foreach (IValidator val in Validators)
- if (!val.IsValid)
- return false;
- return true;
- #else
- return ValidateCollection (_validators);
- #endif
- }
- }
- #if NET_2_0
- public IDictionary Items {
- get {
- if (items == null)
- items = new Hashtable ();
- return items;
- }
- }
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public int LCID {
- get { return Thread.CurrentThread.CurrentCulture.LCID; }
- set { Thread.CurrentThread.CurrentCulture = new CultureInfo (value); }
- }
- #else
- protected int LCID {
- set { Thread.CurrentThread.CurrentCulture = new CultureInfo (value); }
- }
- #endif
- #if NET_2_0
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public bool MaintainScrollPositionOnPostBack {
- get { return _maintainScrollPositionOnPostBack; }
- set { _maintainScrollPositionOnPostBack = value; }
- }
- #endif
- #if NET_2_0
- public PageAdapter PageAdapter {
- get {
- return (PageAdapter)Adapter;
- }
- }
- string _validationStartupScript;
- string _validationOnSubmitStatement;
- string _validationInitializeScript;
- string _webFormScriptReference;
- internal string WebFormScriptReference {
- get {
- if (_webFormScriptReference == null)
- _webFormScriptReference = IsMultiForm ? theForm : "window";
- return _webFormScriptReference;
- }
- }
- internal string ValidationStartupScript {
- get {
- if (_validationStartupScript == null) {
- _validationStartupScript =
- @"
- " + WebFormScriptReference + @".Page_ValidationActive = false;
- " + WebFormScriptReference + @".ValidatorOnLoad();
- " + WebFormScriptReference + @".ValidatorOnSubmit = function () {
- if (this.Page_ValidationActive) {
- return this.ValidatorCommonOnSubmit();
- }
- return true;
- };
- ";
- }
- return _validationStartupScript;
- }
- }
- internal string ValidationOnSubmitStatement {
- get {
- if (_validationOnSubmitStatement == null)
- _validationOnSubmitStatement = "if (!" + WebFormScriptReference + ".ValidatorOnSubmit()) return false;";
- return _validationOnSubmitStatement;
- }
- }
- internal string ValidationInitializeScript {
- get {
- if (_validationInitializeScript == null)
- _validationInitializeScript = "WebFormValidation_Initialize(" + WebFormScriptReference + ");";
- return _validationInitializeScript;
- }
- }
- internal IScriptManager ScriptManager {
- get { return (IScriptManager) Items [typeof (IScriptManager)]; }
- }
- #endif
- #if !TARGET_J2EE
- internal string theForm {
- get {
- return "theForm";
- }
- }
-
- internal bool IsMultiForm {
- get { return false; }
- }
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public HttpRequest Request {
- get {
- if (_request == null)
- throw new HttpException("Request is not available in this context.");
- return _request;
- }
- }
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public HttpResponse Response {
- get {
- if (_response == null)
- throw new HttpException ("Response is not available in this context.");
- return _response;
- }
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public string ResponseEncoding {
- get { return Response.ContentEncoding.WebName; }
- set { Response.ContentEncoding = Encoding.GetEncoding (value); }
- }
- #else
- protected string ResponseEncoding {
- set { Response.ContentEncoding = Encoding.GetEncoding (value); }
- }
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public HttpServerUtility Server {
- get { return Context.Server; }
- }
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public virtual HttpSessionState Session {
- get {
- if (_session != null)
- return _session;
- try {
- _session = Context.Session;
- } catch {
- // ignore, should not throw
- }
-
- if (_session == null)
- throw new HttpException ("Session state can only be used " +
- "when enableSessionState is set to true, either " +
- "in a configuration file or in the Page directive.");
- return _session;
- }
- }
- #if NET_2_0
- [FilterableAttribute (false)]
- [Obsolete]
- #endif
- [Browsable (false)]
- public bool SmartNavigation {
- get { return _smartNavigation; }
- set { _smartNavigation = value; }
- }
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Filterable (false)]
- [Browsable (false)]
- public virtual string StyleSheetTheme {
- get { return _styleSheetTheme; }
- set { _styleSheetTheme = value; }
- }
- [Browsable (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public virtual string Theme {
- get { return _theme; }
- set { _theme = value; }
- }
- void InitializeStyleSheet ()
- {
- if (_styleSheetTheme == null) {
- PagesSection ps = WebConfigurationManager.GetSection ("system.web/pages") as PagesSection;
- if (ps != null)
- _styleSheetTheme = ps.StyleSheetTheme;
- }
- if (_styleSheetTheme != null && _styleSheetTheme != "")
- _styleSheetPageTheme = ThemeDirectoryCompiler.GetCompiledInstance (_styleSheetTheme, Context);
- }
- void InitializeTheme ()
- {
- if (_theme == null) {
- PagesSection ps = WebConfigurationManager.GetSection ("system.web/pages") as PagesSection;
- if (ps != null)
- _theme = ps.Theme;
- }
- if (_theme != null && _theme != "") {
- _pageTheme = ThemeDirectoryCompiler.GetCompiledInstance (_theme, Context);
- _pageTheme.SetPage (this);
- }
- }
- #endif
- #if NET_2_0
- [Localizable (true)]
- [Bindable (true)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public string Title {
- get {
- if (_title == null) {
- if (htmlHeader != null)
- return htmlHeader.Title;
- return String.Empty;
- }
- return _title;
- }
- set {
- if (htmlHeader != null)
- htmlHeader.Title = value;
- else
- _title = value;
- }
- }
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public TraceContext Trace {
- get { return Context.Trace; }
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public bool TraceEnabled {
- get { return Trace.IsEnabled; }
- set { Trace.IsEnabled = value; }
- }
- #else
- protected bool TraceEnabled {
- set { Trace.IsEnabled = value; }
- }
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public TraceMode TraceModeValue {
- get { return Trace.TraceMode; }
- set { Trace.TraceMode = value; }
- }
- #else
- protected TraceMode TraceModeValue {
- set { Trace.TraceMode = value; }
- }
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected int TransactionMode {
- #if NET_2_0
- get { return _transactionMode; }
- #endif
- set { _transactionMode = value; }
- }
- #if !NET_2_0
- //
- // This method is here just to remove the warning about "_transactionMode" not being
- // used. We probably will use it internally at some point.
- //
- internal int GetTransactionMode ()
- {
- return _transactionMode;
- }
- #endif
-
- #if NET_2_0
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public string UICulture {
- get { return Thread.CurrentThread.CurrentUICulture.Name; }
- set { Thread.CurrentThread.CurrentUICulture = GetPageCulture (value, Thread.CurrentThread.CurrentUICulture); }
- }
- #else
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected string UICulture {
- set { Thread.CurrentThread.CurrentUICulture = new CultureInfo (value); }
- }
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public IPrincipal User {
- get { return Context.User; }
- }
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [Browsable (false)]
- public ValidatorCollection Validators {
- get {
- if (_validators == null)
- _validators = new ValidatorCollection ();
- return _validators;
- }
- }
- [MonoTODO ("Use this when encrypting/decrypting ViewState")]
- [Browsable (false)]
- public string ViewStateUserKey {
- get { return viewStateUserKey; }
- set { viewStateUserKey = value; }
- }
- [Browsable (false)]
- public override bool Visible {
- get { return base.Visible; }
- set { base.Visible = value; }
- }
- #endregion
- #region Methods
- #if NET_2_0
- CultureInfo GetPageCulture (string culture, CultureInfo deflt)
- {
- if (culture == null)
- return deflt;
- CultureInfo ret = null;
- if (culture.StartsWith ("auto", StringComparison.InvariantCultureIgnoreCase)) {
- #if TARGET_J2EE
- if (!Context.IsServletRequest)
- return deflt;
- #endif
- string[] languages = Request.UserLanguages;
- try {
- if (languages != null && languages.Length > 0)
- ret = CultureInfo.CreateSpecificCulture (languages[0]);
- } catch {
- }
-
- if (ret == null)
- ret = deflt;
- } else
- ret = CultureInfo.CreateSpecificCulture (culture);
- return ret;
- }
- #endif
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected IAsyncResult AspCompatBeginProcessRequest (HttpContext context,
- AsyncCallback cb,
- object extraData)
- {
- throw new NotImplementedException ();
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected void AspCompatEndProcessRequest (IAsyncResult result)
- {
- throw new NotImplementedException ();
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected virtual HtmlTextWriter CreateHtmlTextWriter (TextWriter tw)
- {
- return new HtmlTextWriter (tw);
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- public void DesignerInitialize ()
- {
- InitRecursive (null);
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected virtual NameValueCollection DeterminePostBackMode ()
- {
- // if request was transfered from other page such Transfer
- if (_context.IsProcessingInclude)
- return null;
-
- HttpRequest req = Request;
- if (req == null)
- return null;
- NameValueCollection coll = null;
- if (0 == String.Compare (Request.HttpMethod, "POST", true, CultureInfo.InvariantCulture))
- coll = req.Form;
- else
- coll = req.QueryString;
- WebROCollection c = (WebROCollection) coll;
- allow_load = !c.GotID;
- if (allow_load)
- c.ID = GetTypeHashCode ();
- else
- allow_load = (c.ID == GetTypeHashCode ());
- if (coll != null && coll ["__VIEWSTATE"] == null && coll ["__EVENTTARGET"] == null)
- return null;
- #if TARGET_J2EE
- if (getFacesContext () != null && _context.Handler != _context.CurrentHandler) {
- // check if it is PreviousPage
- string prevViewId = coll [PreviousPageID];
- if (!String.IsNullOrEmpty (prevViewId)) {
- string appPath = VirtualPathUtility.RemoveTrailingSlash (Request.ApplicationPath);
- prevViewId = prevViewId.Substring (appPath.Length);
- isCrossPagePostBack = String.Compare (prevViewId, getFacesContext ().getExternalContext ().getRequestPathInfo (), StringComparison.OrdinalIgnoreCase) == 0;
- }
- }
- #endif
- return coll;
- }
- #if NET_2_0
- public override Control FindControl (string id) {
- if (id == ID)
- return this;
- else
- return base.FindControl (id);
- }
- #endif
- Control FindControl (string id, bool decode) {
- #if TARGET_J2EE
- if (decode)
- id = DecodeNamespace (id);
- #endif
- return FindControl (id);
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public string GetPostBackClientEvent (Control control, string argument)
- {
- return scriptManager.GetPostBackEventReference (control, argument);
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public string GetPostBackClientHyperlink (Control control, string argument)
- {
- return scriptManager.GetPostBackClientHyperlink (control, argument);
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public string GetPostBackEventReference (Control control)
- {
- return scriptManager.GetPostBackEventReference (control, "");
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public string GetPostBackEventReference (Control control, string argument)
- {
- return scriptManager.GetPostBackEventReference (control, argument);
- }
- internal void RequiresPostBackScript ()
- {
- #if NET_2_0
- if (requiresPostBackScript)
- return;
- ClientScript.RegisterHiddenField (postEventSourceID, String.Empty);
- ClientScript.RegisterHiddenField (postEventArgumentID, String.Empty);
- #endif
- requiresPostBackScript = true;
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- public virtual int GetTypeHashCode ()
- {
- return 0;
- }
- #if NET_2_0
- [MonoTODO("The following properties of OutputCacheParameters are silently ignored: CacheProfile, NoStore, SqlDependency")]
- protected internal virtual void InitOutputCache(OutputCacheParameters cacheSettings)
- {
- if (cacheSettings.Enabled)
- InitOutputCache(cacheSettings.Duration,
- cacheSettings.VaryByContentEncoding,
- cacheSettings.VaryByHeader,
- cacheSettings.VaryByCustom,
- cacheSettings.Location,
- cacheSettings.VaryByParam);
- }
- #endif
- #if NET_2_0
- [MonoTODO ("varyByContentEncoding is not currently used")]
- protected virtual
- #endif
- void InitOutputCache(int duration,
- string varyByContentEncoding,
- string varyByHeader,
- string varyByCustom,
- OutputCacheLocation location,
- string varyByParam)
- {
- HttpCachePolicy cache = Response.Cache;
- bool set_vary = false;
- HttpContext ctx = Context;
- DateTime timestamp = ctx != null ? ctx.Timestamp : DateTime.Now;
-
- switch (location) {
- case OutputCacheLocation.Any:
- cache.SetCacheability (HttpCacheability.Public);
- cache.SetMaxAge (new TimeSpan (0, 0, duration));
- cache.SetLastModified (timestamp);
- set_vary = true;
- break;
- case OutputCacheLocation.Client:
- cache.SetCacheability (HttpCacheability.Private);
- cache.SetMaxAge (new TimeSpan (0, 0, duration));
- cache.SetLastModified (timestamp);
- break;
- case OutputCacheLocation.Downstream:
- cache.SetCacheability (HttpCacheability.Public);
- cache.SetMaxAge (new TimeSpan (0, 0, duration));
- cache.SetLastModified (timestamp);
- break;
- case OutputCacheLocation.Server:
- cache.SetCacheability (HttpCacheability.Server);
- set_vary = true;
- break;
- case OutputCacheLocation.None:
- break;
- }
- if (set_vary) {
- if (varyByCustom != null)
- cache.SetVaryByCustom (varyByCustom);
- if (varyByParam != null && varyByParam.Length > 0) {
- string[] prms = varyByParam.Split (';');
- foreach (string p in prms)
- cache.VaryByParams [p.Trim ()] = true;
- cache.VaryByParams.IgnoreParams = false;
- } else {
- cache.VaryByParams.IgnoreParams = true;
- }
-
- if (varyByHeader != null && varyByHeader.Length > 0) {
- string[] hdrs = varyByHeader.Split (';');
- foreach (string h in hdrs)
- cache.VaryByHeaders [h.Trim ()] = true;
- }
- }
-
- cache.Duration = duration;
- cache.SetExpires (timestamp.AddSeconds (duration));
- }
-
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected virtual void InitOutputCache (int duration,
- string varyByHeader,
- string varyByCustom,
- OutputCacheLocation location,
- string varyByParam)
- {
- InitOutputCache (duration, null, varyByHeader, varyByCustom, location, varyByParam);
- }
- #if NET_2_0
- [Obsolete]
- #else
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- #endif
- public bool IsClientScriptBlockRegistered (string key)
- {
- return scriptManager.IsClientScriptBlockRegistered (key);
- }
- #if NET_2_0
- [Obsolete]
- #else
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- #endif
- public bool IsStartupScriptRegistered (string key)
- {
- return scriptManager.IsStartupScriptRegistered (key);
- }
- public string MapPath (string virtualPath)
- {
- return Request.MapPath (virtualPath);
- }
- #if NET_2_0
- protected internal override void Render (HtmlTextWriter writer) {
- if (MaintainScrollPositionOnPostBack) {
- ClientScript.RegisterWebFormClientScript ();
- ClientScript.RegisterHiddenField (ScrollPositionXID, Request [ScrollPositionXID]);
- ClientScript.RegisterHiddenField (ScrollPositionYID, Request [ScrollPositionYID]);
- string webForm = IsMultiForm ? theForm + "." : null;
- StringBuilder script = new StringBuilder ();
- script.AppendLine ("<script type=\"text/javascript\">");
- script.AppendLine (ClientScriptManager.SCRIPT_BLOCK_START);
- script.AppendLine (theForm + ".oldSubmit = " + theForm + ".submit;");
- script.AppendLine (theForm + ".submit = function () { " + webForm + "WebForm_SaveScrollPositionSubmit(); }");
- script.AppendLine (theForm + ".oldOnSubmit = " + theForm + ".onsubmit;");
- script.AppendLine (theForm + ".onsubmit = function () { " + webForm + "WebForm_SaveScrollPositionOnSubmit(); }");
- if (IsPostBack) {
- script.AppendLine (theForm + ".oldOnLoad = window.onload;");
- script.AppendLine ("window.onload = function () { " + webForm + "WebForm_RestoreScrollPosition (); };");
- }
- script.AppendLine (ClientScriptManager.SCRIPT_BLOCK_END);
- script.AppendLine ("</script>");
-
- ClientScript.RegisterStartupScript (typeof (Page), "MaintainScrollPositionOnPostBackStartup", script.ToString());
- }
- base.Render (writer);
- }
- #endif
- private void RenderPostBackScript (HtmlTextWriter writer, string formUniqueID)
- {
- #if ONLY_1_1
- writer.WriteLine ("<input type=\"hidden\" name=\"{0}\" value=\"\" />", postEventSourceID);
- writer.WriteLine ("<input type=\"hidden\" name=\"{0}\" value=\"\" />", postEventArgumentID);
- #endif
- writer.WriteLine ();
-
- ClientScriptManager.WriteBeginScriptBlock (writer);
- #if ONLY_1_1
- RenderClientScriptFormDeclaration (writer, formUniqueID);
- #endif
- if (IsMultiForm) {
- writer.WriteLine ("{0}._form = {0};", theForm);
- writer.Write (theForm + ".");
- } else {
- writer.WriteLine ("window._form = {0};", theForm);
- }
- writer.WriteLine ("__doPostBack = function (eventTarget, eventArgument) {");
- #if NET_2_0
- writer.WriteLine ("\tif(this._form.onsubmit && this._form.onsubmit() == false) return;");
- #else
- writer.WriteLine ("\tif(document.ValidatorOnSubmit && !ValidatorOnSubmit()) return;");
- #endif
- writer.WriteLine ("\tthis._form.{0}.value = eventTarget;", postEventSourceID);
- writer.WriteLine ("\tthis._form.{0}.value = eventArgument;", postEventArgumentID);
- writer.WriteLine ("\tthis._form.submit();");
- writer.WriteLine ("}");
- ClientScriptManager.WriteEndScriptBlock (writer);
- }
- void RenderClientScriptFormDeclaration (HtmlTextWriter writer, string formUniqueID)
- {
- writer.WriteLine ("\tvar {0};\n\tif (document.getElementById) {{ {0} = document.getElementById ('{1}'); }}", theForm, formUniqueID);
- writer.WriteLine ("\telse {{ {0} = document.{1}; }}", theForm, formUniqueID);
- writer.WriteLine ("\t{0}._instanceVariableName = '{0}';", theForm);
- #if TARGET_J2EE
- // TODO implement callback on portlet
- string serverUrl = Request.RawUrl;
- writer.WriteLine ("\t{0}.serverURL = {1};", theForm, ClientScriptManager.GetScriptLiteral (serverUrl));
- writer.WriteLine ("\twindow.TARGET_J2EE = true;");
- writer.WriteLine ("\twindow.IsMultiForm = {0};", IsMultiForm ? "true" : "false");
- #endif
- }
- internal void OnFormRender (HtmlTextWriter writer, string formUniqueID)
- {
- if (renderingForm)
- throw new HttpException ("Only 1 HtmlForm is allowed per page.");
- renderingForm = true;
- writer.WriteLine ();
- #if NET_2_0
- ClientScriptManager.WriteBeginScriptBlock (writer);
- RenderClientScriptFormDeclaration (writer, formUniqueID);
- ClientScriptManager.WriteEndScriptBlock (writer);
- #endif
- if (handleViewState)
- #if TARGET_J2EE
- if (getFacesContext () != null) {
- javax.faces.application.ViewHandler viewHandler = getFacesContext ().getApplication ().getViewHandler ();
- javax.faces.context.ResponseWriter oldFacesWriter = SetupResponseWriter (writer);
- try {
- viewHandler.writeState (getFacesContext ());
- }
- finally {
- getFacesContext ().setResponseWriter (oldFacesWriter);
- }
- }
- #endif
- scriptManager.RegisterHiddenField ("__VIEWSTATE", _savedViewState);
- scriptManager.WriteHiddenFields (writer);
- if (requiresPostBackScript) {
- RenderPostBackScript (writer, formUniqueID);
- postBackScriptRendered = true;
- }
- #if NET_2_0
- scriptManager.WriteWebFormClientScript (writer);
- #endif
- scriptManager.WriteClientScriptBlocks (writer);
- }
- internal IStateFormatter GetFormatter ()
- {
- return new ObjectStateFormatter (this);
- }
- internal string GetSavedViewState ()
- {
- return _savedViewState;
- }
- internal void OnFormPostRender (HtmlTextWriter writer, string formUniqueID)
- {
- #if NET_2_0
- scriptManager.SaveEventValidationState ();
- scriptManager.WriteExpandoAttributes (writer);
- #endif
- scriptManager.WriteHiddenFields (writer);
- if (!postBackScriptRendered && requiresPostBackScript)
- RenderPostBackScript (writer, formUniqueID);
- #if NET_2_0
- scriptManager.WriteWebFormClientScript (writer);
- #endif
- scriptManager.WriteArrayDeclares (writer);
- scriptManager.WriteStartupScriptBlocks (writer);
- renderingForm = false;
- postBackScriptRendered = false;
- }
- private void ProcessPostData (NameValueCollection data, bool second)
- {
- NameValueCollection requestValues = _requestValueCollection == null ?
- new NameValueCollection () :
- _requestValueCollection;
-
- if (data != null && data.Count > 0) {
- Hashtable used = new Hashtable ();
- foreach (string id in data.AllKeys){
- if (id == "__VIEWSTATE" || id == postEventSourceID || id == postEventArgumentID ||
- id == ClientScriptManager.EventStateFieldName)
- continue;
-
- if (used.ContainsKey (id))
- continue;
- used.Add (id, id);
- Control ctrl = FindControl (id, true);
- if (ctrl != null){
- IPostBackDataHandler pbdh = ctrl as IPostBackDataHandler;
- IPostBackEventHandler pbeh = ctrl as IPostBackEventHandler;
- if (pbdh == null) {
- if (pbeh != null)
- RegisterRequiresRaiseEvent (pbeh);
- continue;
- }
-
- if (pbdh.LoadPostData (id, requestValues) == true) {
- if (requiresPostDataChanged == null)
- requiresPostDataChanged = new ArrayList ();
- requiresPostDataChanged.Add (pbdh);
- }
-
- if (_requiresPostBackCopy != null)
- _requiresPostBackCopy.Remove (id);
- } else if (!second) {
- if (secondPostData == null)
- secondPostData = new NameValueCollection ();
- secondPostData.Add (id, data [id]);
- }
- }
- }
- ArrayList list1 = null;
- if (_requiresPostBackCopy != null && _requiresPostBackCopy.Count > 0) {
- string [] handlers = (string []) _requiresPostBackCopy.ToArray (typeof (string));
- foreach (string id in handlers) {
- IPostBackDataHandler pbdh = FindControl (id, true) as IPostBackDataHandler;
- if (pbdh != null) {
- _requiresPostBackCopy.Remove (id);
- if (pbdh.LoadPostData (id, requestValues)) {
- if (requiresPostDataChanged == null)
- requiresPostDataChanged = new ArrayList ();
-
- requiresPostDataChanged.Add (pbdh);
- }
- } else if (!second) {
- if (list1 == null)
- list1 = new ArrayList ();
- list1.Add (id);
- }
- }
- }
- _requiresPostBackCopy = second ? null : list1;
- if (second)
- secondPostData = null;
- }
- [EditorBrowsable (EditorBrowsableState.Never)]
- #if NET_2_0
- public virtual void ProcessRequest (HttpContext context)
- #else
- public void ProcessRequest (HttpContext context)
- #endif
- {
- SetContext (context);
- #if TARGET_J2EE
- bool wasException = false;
- IHttpHandler jsfHandler = getFacesContext () != null ? EnterThread () : null;
- #endif
-
- if (clientTarget != null)
- Request.ClientTarget = clientTarget;
- WireupAutomaticEvents ();
- //-- Control execution lifecycle in the docs
- // Save culture information because it can be modified in FrameworkInitialize()
- _appCulture = Thread.CurrentThread.CurrentCulture;
- _appUICulture = Thread.CurrentThread.CurrentUICulture;
- FrameworkInitialize ();
- context.ErrorPage = _errorPage;
- try {
- InternalProcessRequest ();
- #if TARGET_J2EE
- } catch (Exception ex) {
- wasException = true;
- HandleException (ex);
- #else
- } catch (ThreadAbortException taex) {
- if (context.Response.FlagEnd == taex.ExceptionState)
- Thread.ResetAbort ();
- else
- throw;
- } catch (Exception e) {
- ProcessException (e);
- #endif
- } finally {
- #if TARGET_J2EE
- if (getFacesContext () != null)
- ExitThread (jsfHandler);
- else if (!wasException)
- #endif
- ProcessUnload ();
- }
- }
- void ProcessException (Exception e) {
- // We want to remove that error, as we're rethrowing to stop
- // further processing.
- Trace.Warn ("Unhandled Exception", e.ToString (), e);
- _context.AddError (e); // OnError might access LastError
- OnError (EventArgs.Empty);
- if (_context.HasError (e)) {
- _context.ClearError (e);
- #if TARGET_JVM
- vmw.common.TypeUtils.Throw (e);
- #else
- throw new TargetInvocationException (e);
- #endif
- }
- }
- void ProcessUnload () {
- try {
- RenderTrace ();
- UnloadRecursive (true);
- } catch {}
- #if TARGET_J2EE
- if (getFacesContext () != null) {
- if(IsCrossPagePostBack)
- _context.Items [CrossPagePostBack] = this;
- }
- #endif
- if (Thread.CurrentThread.CurrentCulture.Equals (_appCulture) == false)
- Thread.CurrentThread.CurrentCulture = _appCulture;
- if (Thread.CurrentThread.CurrentUICulture.Equals (_appUICulture) == false)
- Thread.CurrentThread.CurrentUICulture = _appUICulture;
-
- _appCulture = null;
- _appUICulture = null;
- }
-
- #if NET_2_0
- delegate void ProcessRequestDelegate (HttpContext context);
- private sealed class DummyAsyncResult : IAsyncResult
- {
- readonly object state;
- readonly WaitHandle asyncWaitHandle;
- readonly bool completedSynchronously;
- readonly bool isCompleted;
- public DummyAsyncResult (bool isCompleted, bool completedSynchronously, object state)
- {
- this.isCompleted = isCompleted;
- this.completedSynchronously = completedSynchronously;
- this.state = state;
- if (isCompleted) {
- asyncWaitHandle = new ManualResetEvent (true);
- }
- else {
- asyncWaitHandle = new ManualResetEvent (false);
- }
- }
- #region IAsyncResult Members
- public object AsyncState {
- get { return state; }
- }
- public WaitHandle AsyncWaitHandle {
- get { return asyncWaitHandle; }
- }
- public bool CompletedSynchronously {
- get { return completedSynchronously; }
- }
- public bool IsCompleted {
- get { return isCompleted; }
- }
- #endregion
- }
- protected IAsyncResult AsyncPageBeginProcessRequest (HttpContext context, AsyncCallback callback, object extraData)
- {
- ProcessRequest (context);
- DummyAsyncResult asyncResult = new DummyAsyncResult (true, true, extraData);
- if (callback != null) {
- callback (asyncResult);
- }
-
- return asyncResult;
- }
- protected void AsyncPageEndProcessRequest (IAsyncResult result)
- {
- }
- #endif
- void InternalProcessRequest ()
- {
- _requestValueCollection = this.DeterminePostBackMode();
- #if NET_2_0
- // http://msdn2.microsoft.com/en-us/library/ms178141.aspx
- if (_requestValueCollection != null) {
- if (!isCrossPagePostBack && _requestValueCollection [PreviousPageID] != null && _requestValueCollection [PreviousPageID] != Request.FilePath) {
- _doLoadPreviousPage = true;
- }
- else {
- isCallback = _requestValueCollection [CallbackArgumentID] != null;
- // LAMESPEC: on Callback IsPostBack is set to false, but true.
- //isPostBack = !isCallback;
- isPostBack = true;
- }
- string lastFocus = _requestValueCollection [LastFocusID];
- if (!String.IsNullOrEmpty (lastFocus)) {
- _focusedControlID = UniqueID2ClientID (lastFocus);
- }
- }
-
- if (!isCrossPagePostBack) {
- if (_context.PreviousHandler is Page) {
- previousPage = (Page) _context.PreviousHandler;
- }
- }
- Trace.Write ("aspx.page", "Begin PreInit");
- OnPreInit (EventArgs.Empty);
- Trace.Write ("aspx.page", "End PreInit");
- InitializeTheme ();
- ApplyMasterPage ();
- #endif
- Trace.Write ("aspx.page", "Begin Init");
- InitRecursive (null);
- Trace.Write ("aspx.page", "End Init");
- #if NET_2_0
- Trace.Write ("aspx.page", "Begin InitComplete");
- OnInitComplete (EventArgs.Empty);
- Trace.Write ("aspx.page", "End InitComplete");
- #endif
-
- renderingForm = false;
- #if TARGET_J2EE
- if (getFacesContext () != null)
- if (IsPostBack || IsCallback)
- return;
- #endif
- RestorePageState ();
- ProcessPostData ();
- ProcessRaiseEvents ();
- if (ProcessLoadComplete ())
- return;
- #if TARGET_J2EE
- if (getFacesContext () != null) {
- getFacesContext ().renderResponse ();
- return;
- }
- #endif
- RenderPage ();
- }
- void RestorePageState () {
- #if NET_2_0
- if (IsPostBack || IsCallback) {
- if (_requestValueCollection != null)
- scriptManager.RestoreEventValidationState (
- _requestValueCollection [ClientScriptManager.EventStateFieldName]);
- #else
- if (IsPostBack) {
- #endif
- Trace.Write ("aspx.page", "Begin LoadViewState");
- LoadPageViewState ();
- Trace.Write ("aspx.page", "End LoadViewState");
- }
- }
- void ProcessPostData () {
- #if NET_2_0
- if (IsPostBack || IsCallback) {
- #else
- if (IsPostBack) {
- #endif
- Trace.Write ("aspx.page", "Begin ProcessPostData");
- ProcessPostData (_requestValueCollection, false);
- Trace.Write ("aspx.page", "End ProcessPostData");
- }
- ProcessLoad ();
- #if NET_2_0
- if (IsPostBack || IsCallback) {
- #else
- if (IsPostBack) {
- #endif
- Trace.Write ("aspx.page", "Begin ProcessPostData Second Try");
- ProcessPostData (secondPostData, true);
- Trace.Write ("aspx.page", "End ProcessPostData Second Try");
- }
- }
- void ProcessLoad () {
- #if NET_2_0
- Trace.Write ("aspx.page", "Begin PreLoad");
- OnPreLoad (EventArgs.Empty);
- Trace.Write ("aspx.page", "End PreLoad");
- #endif
- Trace.Write ("aspx.page", "Begin Load");
- LoadRecursive ();
- Trace.Write ("aspx.page", "End Load");
- }
- void ProcessRaiseEvents () {
- #if NET_2_0
- if (IsPostBack || IsCallback) {
- #else
- if (IsPostBack) {
- #endif
- Trace.Write ("aspx.page", "Begin Raise ChangedEvents");
- RaiseChangedEvents ();
- Trace.Write ("aspx.page", "End Raise ChangedEvents");
- Trace.Write ("aspx.page", "Begin Raise PostBackEvent");
- RaisePostBackEvents ();
- Trace.Write ("aspx.page", "End Raise PostBackEvent");
- }
- }
- bool ProcessLoadComplete() {
-
- #if NET_2_0
- Trace.Write ("aspx.page", "Begin LoadComplete");
- OnLoadComplete (EventArgs.Empty);
- Trace.Write ("aspx.page", "End LoadComplete");
- if (IsCrossPagePostBack)
- return true;
- if (IsCallback) {
- #if TARGET_J2EE
- if (getFacesContext () != null) {
- _callbackTarget = GetCallbackTarget ();
- ProcessRaiseCallbackEvent (_callbackTarget, ref _callbackEventError);
- return true;
- }
- #endif
- string result = ProcessCallbackData ();
- HtmlTextWriter callbackOutput = new HtmlTextWriter (Response.Output);
- callbackOutput.Write (result);
- callbackOutput.Flush ();
- return true;
- }
- #endif
-
- Trace.Write ("aspx.page", "Begin PreRender");
- PreRenderRecursiveInternal ();
- Trace.Write ("aspx.page", "End PreRender");
-
- #if NET_2_0
- ExecuteRegisteredAsyncTasks ();
- Trace.Write ("aspx.page", "Begin PreRenderComplete");
- OnPreRenderComplete (EventArgs.Empty);
- Trace.Write ("aspx.page", "End PreRenderComplete");
- #endif
- Trace.Write ("aspx.page", "Begin SaveViewState");
- SavePageViewState ();
- Trace.Write ("aspx.page", "End SaveViewState");
-
- #if NET_2_0
- Trace.Write ("aspx.page", "Begin SaveStateComplete");
- OnSaveStateComplete (EventArgs.Empty);
- Trace.Write ("aspx.page", "End SaveStateComplete");
- #endif // NET_2_0
- return false;
- }
- internal void RenderPage () {
- #if NET_2_0
- scriptManager.ResetEventValidationState ();
- #endif
-
- //--
- Trace.Write ("aspx.page", "Begin Render");
- HtmlTextWriter output = new HtmlTextWriter (Response.Output);
- #if TARGET_J2EE
- if (getFacesContext () != null)
- SetupResponseWriter (output);
- #endif
- RenderControl (output);
- Trace.Write ("aspx.page", "End Render");
- }
- void SetContext (HttpContext context) {
- _context = context;
- _application = context.Application;
- _response = context.Response;
- _request = context.Request;
- _cache = context.Cache;
- }
- private void RenderTrace ()
- {
- TraceManager traceManager = HttpRuntime.TraceManager;
- if (Trace.HaveTrace && !Trace.IsEnabled || !Trace.HaveTrace && !traceManager.Enabled)
- return;
-
- Trace.SaveData ();
- if (!Trace.HaveTrace && traceManager.Enabled && !traceManager.PageOutput)
- return;
- if (!traceManager.LocalOnly || Context.Request.IsLocal) {
- HtmlTextWriter output = new HtmlTextWriter (Response.Output);
- Trace.Render (output);
- }
- }
-
- #if NET_2_0
- bool CheckForValidationSupport (Control targetControl)
- {
- if (targetControl == null)
- return false;
- Type type = targetControl.GetType ();
- object[] attributes = type.GetCustomAttributes (false);
- foreach (object attr in attributes)
- if (attr is SupportsEventValidationAttribute)
- return true;
- return false;
- }
- #endif
-
- void RaisePostBackEvents ()
- {
- #if NET_2_0
- Control targetControl;
- #endif
- if (requiresRaiseEvent != null) {
- RaisePostBackEvent (requiresRaiseEvent, null);
- return;
- }
- NameValueCollection postdata = _requestValueCollection;
- if (postdata == null)
- return;
- string eventTarget = postdata [postEventSourceID];
- if (eventTarget == null || eventTarget.Length == 0) {
- Validate ();
- return;
- }
- #if NET_2_0
- targetControl = FindControl (eventTarget, true);
- IPostBackEventHandler target = targetControl as IPostBackEventHandler;
- #else
- IPostBackEventHandler target = FindControl (eventTarget) as IPostBackEventHandler;
- #endif
-
- if (target == null)
- return;
- string eventArgument = postdata [postEventArgumentID];
- RaisePostBackEvent (target, eventArgument);
- }
- internal void RaiseChangedEvents ()
- {
- if (requiresPostDataChanged == null)
- return;
- foreach (IPostBackDataHandler ipdh in requiresPostDataChanged)
- ipdh.RaisePostDataChangedEvent ();
- requiresPostDataChanged = null;
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected virtual void RaisePostBackEvent (IPostBackEventHandler sourceControl, string eventArgument)
- {
- #if NET_2_0
- Control targetControl = sourceControl as Control;
- if (targetControl != null && CheckForValidationSupport (targetControl))
- scriptManager.ValidateEvent (targetControl.UniqueID, eventArgument);
- #endif
- sourceControl.RaisePostBackEvent (eventArgument);
- }
-
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public void RegisterArrayDeclaration (string arrayName, string arrayValue)
- {
- scriptManager.RegisterArrayDeclaration (arrayName, arrayValue);
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public virtual void RegisterClientScriptBlock (string key, string script)
- {
- scriptManager.RegisterClientScriptBlock (key, script);
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public virtual void RegisterHiddenField (string hiddenFieldName, string hiddenFieldInitialValue)
- {
- scriptManager.RegisterHiddenField (hiddenFieldName, hiddenFieldInitialValue);
- }
- [MonoTODO("Not implemented, Used in HtmlForm")]
- internal void RegisterClientScriptFile (string a, string b, string c)
- {
- throw new NotImplementedException ();
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public void RegisterOnSubmitStatement (string key, string script)
- {
- scriptManager.RegisterOnSubmitStatement (key, script);
- }
- internal string GetSubmitStatements ()
- {
- return scriptManager.WriteSubmitStatements ();
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public void RegisterRequiresPostBack (Control control)
- {
- #if NET_2_0
- if (!(control is IPostBackDataHandler))
- throw new HttpException ("The control to register does not implement the IPostBackDataHandler interface.");
- #endif
-
- if (_requiresPostBack == null)
- _requiresPostBack = new ArrayList ();
- if (_requiresPostBack.Contains (control.UniqueID))
- return;
- _requiresPostBack.Add (control.UniqueID);
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public virtual void RegisterRequiresRaiseEvent (IPostBackEventHandler control)
- {
- requiresRaiseEvent = control;
- }
- #if NET_2_0
- [Obsolete]
- #endif
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public virtual void RegisterStartupScript (string key, string script)
- {
- scriptManager.RegisterStartupScript (key, script);
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public void RegisterViewStateHandler ()
- {
- handleViewState = true;
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected virtual void SavePageStateToPersistenceMedium (object viewState)
- {
- PageStatePersister persister = this.PageStatePersister;
- if (persister == null)
- return;
- Pair pair = viewState as Pair;
- if (pair != null) {
- persister.ViewState = pair.First;
- persister.ControlState = pair.Second;
- } else
- persister.ViewState = viewState;
- persister.Save ();
- }
- internal string RawViewState {
- get {
- NameValueCollection postdata = _requestValueCollection;
- string view_state;
- if (postdata == null || (view_state = postdata ["__VIEWSTATE"]) == null)
- return null;
- if (view_state == "")
- return null;
- return view_state;
- }
- set { _savedViewState = value; }
- }
- #if NET_2_0
- protected virtual
- #else
- internal
- #endif
- PageStatePersister PageStatePersister {
- get {
- if (page_state_persister == null)
- #if TARGET_J2EE
- if (getFacesContext () != null)
- return new FacesPageStatePersister (this);
- else
- #endif
- page_state_persister = new HiddenFieldPageStatePersister (this);
- return page_state_persister;
- }
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- protected virtual object LoadPageStateFromPersistenceMedium ()
- {
- PageStatePersister persister = this.PageStatePersister;
- if (persister == null)
- return null;
- persister.Load ();
- return new Pair (persister.ViewState, persister.ControlState);
- }
- internal void LoadPageViewState()
- {
- Pair sState = LoadPageStateFromPersistenceMedium () as Pair;
- if (sState != null) {
- if (allow_load) {
- #if NET_2_0
- LoadPageControlState (sState.Second);
- #endif
- Pair vsr = sState.First as Pair;
- if (vsr != null) {
- LoadViewStateRecursive (vsr.First);
- _requiresPostBackCopy = vsr.Second as ArrayList;
- }
- }
- }
- }
- internal void SavePageViewState ()
- {
- if (!handleViewState)
- return;
- #if NET_2_0
- object controlState = SavePageControlState ();
- #endif
- object viewState = SaveViewStateRecursive ();
- object reqPostback = (_requiresPostBack != null && _requiresPostBack.Count > 0) ? _requiresPostBack : null;
- Pair vsr = null;
- if (viewState != null || reqPostback != null)
- vsr = new Pair (viewState, reqPostback);
- Pair pair = new Pair ();
- pair.First = vsr;
- #if NET_2_0
- pair.Second = controlState;
- #else
- pair.Second = null;
- #endif
- if (pair.First == null && pair.Second == null)
- SavePageStateToPersistenceMedium (null);
- else
- SavePageStateToPersistenceMedium (pair);
- }
- public virtual void Validate ()
- {
- is_validated = true;
- ValidateCollection (_validators);
- }
- #if NET_2_0
- internal bool AreValidatorsUplevel () {
- return AreValidatorsUplevel (String.Empty);
- }
- internal bool AreValidatorsUplevel (string valGroup)
- #else
- internal virtual bool AreValidatorsUplevel ()
- #endif
- {
- bool uplevel = false;
- foreach (IValidator v in Validators) {
- BaseValidator bv = v as BaseValidator;
- if (bv == null) continue;
- #if NET_2_0
- if (valGroup != bv.ValidationGroup)
- continue;
- #endif
- if (bv.GetRenderUplevel()) {
- uplevel = true;
- break;
- }
- }
- return uplevel;
- }
- bool ValidateCollection (ValidatorCollection validators)
- {
- #if NET_2_0
- if (!_eventValidation)
- return true;
- #endif
- if (validators == null || validators.Count == 0)
- return true;
- bool all_valid = true;
- foreach (IValidator v in validators){
- v.Validate ();
- if (v.IsValid == false)
- all_valid = false;
- }
- return all_valid;
- }
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public virtual void VerifyRenderingInServerForm (Control control)
- {
- if (Context == null)
- return;
- #if NET_2_0
- if (IsCallback)
- return;
- #endif
- if (!renderingForm)
- throw new HttpException ("Control '" +
- control.ClientID +
- "' of type '" +
- control.GetType ().Name +
- "' must be placed inside a form tag with runat=server.");
- }
- protected override void FrameworkInitialize ()
- {
- base.FrameworkInitialize ();
- #if NET_2_0
- InitializeStyleSheet ();
- #endif
- }
- #endregion
-
- #if NET_2_0
- public
- #else
- internal
- #endif
- ClientScriptManager ClientScript {
- get { return scriptManager; }
- }
-
- #if NET_2_0
-
- static readonly object InitCompleteEvent = new object ();
- static readonly object LoadCompleteEvent = new object ();
- static readonly object PreInitEvent = new object ();
- static readonly object PreLoadEvent = new object ();
- static readonly object PreRenderCompleteEvent = new object ();
- static readonly object SaveStateCompleteEvent = new object ();
- int event_mask;
- const int initcomplete_mask = 1;
- const int loadcomplete_mask = 1 << 1;
- const int preinit_mask = 1 << 2;
- const int preload_mask = 1 << 3;
- const int prerendercomplete_mask = 1 << 4;
- const int savestatecomplete_mask = 1 << 5;
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public event EventHandler InitComplete {
- add {
- event_mask |= initcomplete_mask;
- Events.AddHandler (InitCompleteEvent, value);
- }
- remove { Events.RemoveHandler (InitCompleteEvent, value); }
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public event EventHandler LoadComplete {
- add {
- event_mask |= loadcomplete_mask;
- Events.AddHandler (LoadCompleteEvent, value);
- }
- remove { Events.RemoveHandler (LoadCompleteEvent, value); }
- }
-
- public event EventHandler PreInit {
- add {
- event_mask |= preinit_mask;
- Events.AddHandler (PreInitEvent, value);
- }
- remove { Events.RemoveHandler (PreInitEvent, value); }
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public event EventHandler PreLoad {
- add {
- event_mask |= preload_mask;
- Events.AddHandler (PreLoadEvent, value);
- }
- remove { Events.RemoveHandler (PreLoadEvent, value); }
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public event EventHandler PreRenderComplete {
- add {
- event_mask |= prerendercomplete_mask;
- Events.AddHandler (PreRenderCompleteEvent, value);
- }
- remove { Events.RemoveHandler (PreRenderCompleteEvent, value); }
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public event EventHandler SaveStateComplete {
- add {
- event_mask |= savestatecomplete_mask;
- Events.AddHandler (SaveStateCompleteEvent, value);
- }
- remove { Events.RemoveHandler (SaveStateCompleteEvent, value); }
- }
-
- protected virtual void OnInitComplete (EventArgs e)
- {
- if ((event_mask & initcomplete_mask) != 0) {
- EventHandler eh = (EventHandler) (Events [InitCompleteEvent]);
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnLoadComplete (EventArgs e)
- {
- if ((event_mask & loadcomplete_mask) != 0) {
- EventHandler eh = (EventHandler) (Events [LoadCompleteEvent]);
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnPreInit (EventArgs e)
- {
- if ((event_mask & preinit_mask) != 0) {
- EventHandler eh = (EventHandler) (Events [PreInitEvent]);
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnPreLoad (EventArgs e)
- {
- if ((event_mask & preload_mask) != 0) {
- EventHandler eh = (EventHandler) (Events [PreLoadEvent]);
- if (eh != null) eh (this, e);
- }
- }
-
- protected virtual void OnPreRenderComplete (EventArgs e)
- {
- if ((event_mask & prerendercomplete_mask) != 0) {
- EventHandler eh = (EventHandler) (Events [PreRenderCompleteEvent]);
- if (eh != null) eh (this, e);
- }
- if (Form == null)
- return;
- if (!Form.DetermineRenderUplevel ())
- return;
- string defaultButtonId = Form.DefaultButton;
- /* figure out if we have some control we're going to focus */
- if (String.IsNullOrEmpty (_focusedControlID)) {
- _focusedControlID = Form.DefaultFocus;
- if (String.IsNullOrEmpty (_focusedControlID))
- _focusedControlID = defaultButtonId;
- }
- if (!String.IsNullOrEmpty (_focusedControlID)) {
- ClientScript.RegisterWebFormClientScript ();
-
- string webForm;
- if (IsMultiForm)
- webForm = theForm + ".";
- else
- webForm = String.Empty;
-
- ClientScript.RegisterStartupScript (
- typeof(Page),
- "HtmlForm-DefaultButton-StartupScript",
- "\n" + webForm + "WebForm_AutoFocus('" + _focusedControlID + "');\n", true);
- }
-
- if (Form.SubmitDisabledControls && _hasEnabledControlArray) {
- ClientScript.RegisterWebFormClientScript ();
- string webForm;
- if (IsMultiForm)
- webForm = theForm + ".";
- else
- webForm = String.Empty;
- ClientScript.RegisterOnSubmitStatement (
- typeof (Page),
- "HtmlForm-SubmitDisabledControls-SubmitStatement",
- webForm + "WebForm_ReEnableControls();");
- }
- }
- internal void RegisterEnabledControl (Control control)
- {
- if (Form == null || !Page.Form.SubmitDisabledControls || !Page.Form.DetermineRenderUplevel ())
- return;
- _hasEnabledControlArray = true;
- Page.ClientScript.RegisterArrayDeclaration (EnabledControlArrayID, String.Concat ("'", control.ClientID, "'"));
- }
-
- protected virtual void OnSaveStateComplete (EventArgs e)
- {
- if ((event_mask & savestatecomplete_mask) != 0) {
- EventHandler eh = (EventHandler) (Events [SaveStateCompleteEvent]);
- if (eh != null) eh (this, e);
- }
- }
-
- public HtmlForm Form {
- get { return _form; }
- }
-
- internal void RegisterForm (HtmlForm form)
- {
- _form = form;
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public Page PreviousPage {
- get {
- if (_doLoadPreviousPage) {
- _doLoadPreviousPage = false;
- LoadPreviousPageReference ();
- }
- return previousPage;
- }
- }
-
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public bool IsCallback {
- get { return isCallback; }
- }
-
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public bool IsCrossPagePostBack {
- get { return isCrossPagePostBack; }
- }
- public new virtual char IdSeparator {
- get {
- //TODO: why override?
- return base.IdSeparator;
- }
- }
-
- string ProcessCallbackData ()
- {
- ICallbackEventHandler target = GetCallbackTarget ();
- string callbackEventError = String.Empty;
- ProcessRaiseCallbackEvent (target, ref callbackEventError);
- return ProcessGetCallbackResult (target, callbackEventError);
- }
- ICallbackEventHandler GetCallbackTarget () {
- string callbackTarget = _requestValueCollection [CallbackSourceID];
- if (callbackTarget == null || callbackTarget.Length == 0)
- throw new HttpException ("Callback target not provided.");
- Control targetControl = FindControl (callbackTarget, true);
- ICallbackEventHandler target = targetControl as ICallbackEventHandler;
- if (target == null)
- throw new HttpException (string.Format ("Invalid callback target '{0}'.", callbackTarget));
- return target;
- }
- void ProcessRaiseCallbackEvent (ICallbackEventHandler target, ref string callbackEventError) {
- string callbackArgument = _requestValueCollection [CallbackArgumentID];
- try {
- target.RaiseCallbackEvent (callbackArgument);
- } catch (Exception ex) {
- callbackEventError = String.Concat ("e", ex.Message);
- }
-
- }
- string ProcessGetCallbackResult (ICallbackEventHandler target, string callbackEventError) {
- string callBackResult;
- try {
- callBackResult = target.GetCallbackResult ();
- } catch (Exception ex) {
- return String.Concat ("e", ex.Message);
- }
-
- string eventValidation = ClientScript.GetEventValidationStateFormatted ();
- return callbackEventError + (eventValidation == null ? "0" : eventValidation.Length.ToString ()) + "|" +
- eventValidation + callBackResult;
- }
- [BrowsableAttribute (false)]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public HtmlHead Header {
- get { return htmlHeader; }
- }
-
- internal void SetHeader (HtmlHead header)
- {
- htmlHeader = header;
- if (_title != null) {
- htmlHeader.Title = _title;
- _title = null;
- }
- }
- protected bool AsyncMode {
- get { return asyncMode; }
- set { asyncMode = value; }
- }
- public TimeSpan AsyncTimeout {
- get { return asyncTimeout; }
- set { asyncTimeout = value; }
- }
- public bool IsAsync {
- get { return AsyncMode; }
- }
-
- [MonoTODO ("Not Implemented")]
- protected internal virtual string UniqueFilePathSuffix {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO ("Not Implemented")]
- public int MaxPageStateFieldLength {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- public void AddOnPreRenderCompleteAsync (BeginEventHandler beginHandler, EndEventHandler endHandler)
- {
- AddOnPreRenderCompleteAsync (beginHandler, endHandler, null);
- }
- public void AddOnPreRenderCompleteAsync (BeginEventHandler beginHandler, EndEventHandler endHandler, Object state)
- {
- if (!IsAsync) {
- throw new InvalidOperationException ("AddOnPreRenderCompleteAsync called and Page.IsAsync == false");
- }
- if (IsPrerendered) {
- throw new InvalidOperationException ("AddOnPreRenderCompleteAsync can only be called before and during PreRender.");
- }
- if (beginHandler == null) {
- throw new ArgumentNullException ("beginHandler");
- }
- if (endHandler == null) {
- throw new ArgumentNullException ("endHandler");
- }
- RegisterAsyncTask (new PageAsyncTask (beginHandler, endHandler, null, state, false));
- }
- private List<PageAsyncTask> ParallelTasks {
- get {
- if (parallelTasks == null) {
- parallelTasks = new List<PageAsyncTask>();
- }
- return parallelTasks;
- }
- }
- private List<PageAsyncTask> SerialTasks {
- get {
- if (serialTasks == null) {
- serialTasks = new List<PageAsyncTask> ();
- }
- return serialTasks;
- }
- }
- public void RegisterAsyncTask (PageAsyncTask task)
- {
- if (task == null) {
- throw new ArgumentNullException ("task");
- }
- if (task.ExecuteInParallel) {
- ParallelTasks.Add (task);
- }
- else {
- SerialTasks.Add (task);
- }
- }
- public void ExecuteRegisteredAsyncTasks ()
- {
- if ((parallelTasks == null || parallelTasks.Count == 0) &&
- (serialTasks == null || serialTasks.Count == 0)){
- return;
- }
- if (parallelTasks != null) {
- DateTime startExecution = DateTime.Now;
- List<PageAsyncTask> localParallelTasks = parallelTasks;
- parallelTasks = null; // Shouldn't execute tasks twice
- List<IAsyncResult> asyncResults = new List<IAsyncResult>();
- foreach (PageAsyncTask parallelTask in localParallelTasks) {
- IAsyncResult result = parallelTask.BeginHandler (this, EventArgs.Empty, new AsyncCallback (EndAsyncTaskCallback), parallelTask.State);
- if (result.CompletedSynchronously) {
- parallelTask.EndHandler (result);
- }
- else {
- asyncResults.Add (result);
- }
- }
- if (asyncResults.Count > 0) {
- #if TARGET_JVM
- TimeSpan timeout = AsyncTimeout;
- long t1 = DateTime.Now.Ticks;
- bool signalled = true;
- for (int i = 0; i < asyncResults.Count; i++) {
- if (asyncResults [i].IsCompleted)
- continue;
- if (signalled)
- signalled = asyncResults [i].AsyncWaitHandle.WaitOne (timeout, false);
- if (signalled) {
- long t2 = DateTime.Now.Ticks;
- timeout = AsyncTimeout - TimeSpan.FromTicks (t2 - t1);
- if (timeout.Ticks <= 0)
- signalled = false;
- }
- else {
- localParallelTasks [i].TimeoutHandler (asyncResults [i]);
- }
- }
- #else
- WaitHandle [] waitArray = new WaitHandle [asyncResults.Count];
- int i = 0;
- for (i = 0; i < asyncResults.Count; i++) {
- waitArray [i] = asyncResults [i].AsyncWaitHandle;
- }
- bool allSignalled = WaitHandle.WaitAll (waitArray, AsyncTimeout, false);
- if (!allSignalled) {
- for (i = 0; i < asyncResults.Count; i++) {
- if (!asyncResults [i].IsCompleted) {
- localParallelTasks [i].TimeoutHandler (asyncResults [i]);
- }
- }
- }
- #endif
- }
- DateTime endWait = DateTime.Now;
- TimeSpan elapsed = endWait - startExecution;
- if (elapsed <= AsyncTimeout) {
- AsyncTimeout -= elapsed;
- }
- else {
- AsyncTimeout = TimeSpan.FromTicks(0);
- }
- }
- if (serialTasks != null) {
- List<PageAsyncTask> localSerialTasks = serialTasks;
- serialTasks = null; // Shouldn't execute tasks twice
- foreach (PageAsyncTask serialTask in localSerialTasks) {
- DateTime startExecution = DateTime.Now;
- IAsyncResult result = serialTask.BeginHandler (this, EventArgs.Empty, new AsyncCallback (EndAsyncTaskCallback), serialTask);
- if (result.CompletedSynchronously) {
- serialTask.EndHandler (result);
- }
- else {
- bool done = result.AsyncWaitHandle.WaitOne (AsyncTimeout, false);
- if (!done && !result.IsCompleted) {
- serialTask.TimeoutHandler (result);
- }
- }
- DateTime endWait = DateTime.Now;
- TimeSpan elapsed = endWait - startExecution;
- if (elapsed <= AsyncTimeout) {
- AsyncTimeout -= elapsed;
- }
- else {
- AsyncTimeout = TimeSpan.FromTicks (0);
- }
- }
- }
- AsyncTimeout = TimeSpan.FromSeconds (DefaultAsyncTimeout);
- }
- void EndAsyncTaskCallback (IAsyncResult result)
- {
- PageAsyncTask task = (PageAsyncTask)result.AsyncState;
- task.EndHandler (result);
- }
- public static HtmlTextWriter CreateHtmlTextWriterFromType (TextWriter tw, Type writerType)
- {
- Type htmlTextWriterType = typeof (HtmlTextWriter);
-
- if (!htmlTextWriterType.IsAssignableFrom (writerType)) {
- throw new HttpException (String.Format ("Type '{0}' cannot be assigned to HtmlTextWriter", writerType.FullName));
- }
- ConstructorInfo constructor = writerType.GetConstructor (new Type [] { typeof (TextWriter) });
- if (constructor == null) {
- throw new HttpException (String.Format ("Type '{0}' does not have a consturctor that takes a TextWriter as parameter", writerType.FullName));
- }
- return (HtmlTextWriter) Activator.CreateInstance(writerType, tw);
- }
- public ViewStateEncryptionMode ViewStateEncryptionMode {
- get { return viewStateEncryptionMode; }
- set { viewStateEncryptionMode = value; }
- }
- public void RegisterRequiresViewStateEncryption ()
- {
- controlRegisteredForViewStateEncryption = true;
- }
- private static byte [] AES_IV = null;
- private static byte [] TripleDES_IV = null;
- private static object locker = new object ();
- private static bool isEncryptionInitialized = false;
- private static void InitializeEncryption ()
- {
- if (isEncryptionInitialized) {
- return;
- }
- lock (locker) {
- if (isEncryptionInitialized) {
- return;
- }
- string iv_string = "0BA48A9E-736D-40f8-954B-B2F62241F282";
- AES_IV = new byte [16];
- TripleDES_IV = new byte [8];
- int i;
- for (i = 0; i < AES_IV.Length; i++) {
- AES_IV [i] = (byte) iv_string [i];
- }
- for (i = 0; i < TripleDES_IV.Length; i++) {
- TripleDES_IV [i] = (byte) iv_string [i];
- }
- isEncryptionInitialized = true;
- }
- }
- internal ICryptoTransform GetCryptoTransform (CryptoStreamMode cryptoStreamMode)
- {
- ICryptoTransform transform = null;
- MachineKeySection config = (MachineKeySection) WebConfigurationManager.GetSection (machineKeyConfigPath);
- byte [] vk = MachineKeySectionUtils.ValidationKeyBytes (config);
- switch (config.Validation) {
- case MachineKeyValidation.SHA1:
- transform = SHA1.Create ();
- break;
- case MachineKeyValidation.MD5:
- transform = MD5.Create ();
- break;
- case MachineKeyValidation.AES:
- if (cryptoStreamMode == CryptoStreamMode.Read){
- transform = Rijndael.Create().CreateDecryptor(vk, AES_IV);
- } else {
- transform = Rijndael.Create().CreateEncryptor(vk, AES_IV);
- }
- break;
- case MachineKeyValidation.TripleDES:
- if (cryptoStreamMode == CryptoStreamMode.Read){
- transform = TripleDES.Create().CreateDecryptor(vk, TripleDES_IV);
- } else {
- transform = TripleDES.Create().CreateEncryptor(vk, TripleDES_IV);
- }
- break;
- }
- return transform;
- }
- internal bool NeedViewStateEncryption {
- get {
- return (ViewStateEncryptionMode == ViewStateEncryptionMode.Always ||
- (ViewStateEncryptionMode == ViewStateEncryptionMode.Auto &&
- controlRegisteredForViewStateEncryption));
- }
- }
- void ApplyMasterPage ()
- {
- if (masterPageFile != null && masterPageFile.Length > 0) {
- ArrayList appliedMasterPageFiles = new ArrayList ();
- if (Master != null) {
- MasterPage.ApplyMasterPageRecursive (Master, appliedMasterPageFiles);
- Master.Page = this;
- Controls.Clear ();
- Controls.Add (Master);
- }
- }
- }
- [DefaultValueAttribute ("")]
- public virtual string MasterPageFile {
- get { return masterPageFile; }
- set {
- masterPageFile = value;
- masterPage = null;
- }
- }
-
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [BrowsableAttribute (false)]
- public MasterPage Master {
- get {
- if (Context == null || String.IsNullOrEmpty (masterPageFile))
- return null;
- if (masterPage == null)
- masterPage = MasterPage.CreateMasterPage (this, Context, masterPageFile, contentTemplates);
- return masterPage;
- }
- }
-
- public void SetFocus (string clientID)
- {
- if (String.IsNullOrEmpty (clientID))
- throw new ArgumentNullException ("control");
- if (IsPrerendered)
- throw new InvalidOperationException ("SetFocus can only be called before and during PreRender.");
- if(Form==null)
- throw new InvalidOperationException ("A form tag with runat=server must exist on the Page to use SetFocus() or the Focus property.");
- _focusedControlID = clientID;
- }
- public void SetFocus (Control control)
- {
- if (control == null)
- throw new ArgumentNullException ("control");
- SetFocus (control.ClientID);
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public void RegisterRequiresControlState (Control control)
- {
- if (control == null)
- throw new ArgumentNullException ("control");
- if (RequiresControlState (control))
- return;
- if (requireStateControls == null)
- requireStateControls = new ArrayList ();
- int n = requireStateControls.Add (control);
- if (_savedControlState == null || n >= _savedControlState.Length)
- return;
- for (Control parent = control.Parent; parent != null; parent = parent.Parent)
- if (parent.IsChildControlStateCleared)
- return;
- object state = _savedControlState [n];
- if (state != null)
- control.LoadControlState (state);
- }
-
- public bool RequiresControlState (Control control)
- {
- if (requireStateControls == null) return false;
- return requireStateControls.Contains (control);
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public void UnregisterRequiresControlState (Control control)
- {
- if (requireStateControls != null)
- requireStateControls.Remove (control);
- }
-
- public ValidatorCollection GetValidators (string validationGroup)
- {
- if (validationGroup == String.Empty)
- validationGroup = null;
- ValidatorCollection col = new ValidatorCollection ();
- if (_validators == null)
- return col;
-
- foreach (IValidator v in _validators)
- if (BelongsToGroup(v, validationGroup))
- col.Add(v);
- return col;
- }
-
- bool BelongsToGroup(IValidator v, string validationGroup) {
- BaseValidator validator = v as BaseValidator;
- if (validationGroup == null)
- return validator == null || String.IsNullOrEmpty (validator.ValidationGroup);
- else
- return validator != null && validator.ValidationGroup == validationGroup;
- }
-
- public virtual void Validate (string validationGroup)
- {
- is_validated = true;
- ValidateCollection (GetValidators (validationGroup));
- }
- object SavePageControlState ()
- {
- if (requireStateControls == null) return null;
- object[] state = new object [requireStateControls.Count];
-
- bool allNull = true;
- for (int n=0; n<state.Length; n++) {
- state [n] = ((Control) requireStateControls [n]).SaveControlState ();
- if (state [n] != null) allNull = false;
-
- TraceContext trace = (Context != null && Context.Trace.IsEnabled) ? Context.Trace : null;
- if (trace != null)
- trace.SaveControlState ((Control) requireStateControls [n], state [n]);
- }
- if (allNull) return null;
- else return state;
- }
-
- void LoadPageControlState (object data)
- {
- _savedControlState = (object []) data;
-
- if (requireStateControls == null) return;
- int max = Math.Min (requireStateControls.Count, _savedControlState != null ? _savedControlState.Length : requireStateControls.Count);
- for (int n=0; n < max; n++) {
- Control ctl = (Control) requireStateControls [n];
- ctl.LoadControlState (_savedControlState != null ? _savedControlState [n] : null);
- }
- }
- void LoadPreviousPageReference ()
- {
- if (_requestValueCollection != null) {
- string prevPage = _requestValueCollection [PreviousPageID];
- if (prevPage != null) {
- #if TARGET_J2EE
- if (getFacesContext () != null) {
- IHttpHandler handler = Context.ApplicationInstance.GetHandler (Context, prevPage);
- Server.Execute (handler, null, true, _context.Request.CurrentExecutionFilePath, null, false, false);
- if (_context.Items.Contains (CrossPagePostBack)) {
- previousPage = (Page) _context.Items [CrossPagePostBack];
- _context.Items.Remove (CrossPagePostBack);
- }
- return;
- }
- #else
- IHttpHandler handler = PageParser.GetCompiledPageInstance (prevPage, Server.MapPath (prevPage), Context);
- previousPage = (Page) handler;
- previousPage.isCrossPagePostBack = true;
- Server.Execute (handler, null, true, _context.Request.CurrentExecutionFilePath, null, false, false);
- #endif
- }
- }
- }
- Hashtable contentTemplates;
- [EditorBrowsable (EditorBrowsableState.Never)]
- protected internal void AddContentTemplate (string templateName, ITemplate template)
- {
- if (contentTemplates == null)
- contentTemplates = new Hashtable ();
- contentTemplates [templateName] = template;
- }
- PageTheme _pageTheme;
- internal PageTheme PageTheme {
- get { return _pageTheme; }
- }
- PageTheme _styleSheetPageTheme;
- internal PageTheme StyleSheetPageTheme {
- get { return _styleSheetPageTheme; }
- }
- Stack dataItemCtx;
-
- internal void PushDataItemContext (object o) {
- if (dataItemCtx == null)
- dataItemCtx = new Stack ();
-
- dataItemCtx.Push (o);
- }
-
- internal void PopDataItemContext () {
- if (dataItemCtx == null)
- throw new InvalidOperationException ();
-
- dataItemCtx.Pop ();
- }
-
- public object GetDataItem() {
- if (dataItemCtx == null || dataItemCtx.Count == 0)
- throw new InvalidOperationException ("No data item");
-
- return dataItemCtx.Peek ();
- }
- protected internal override void OnInit (EventArgs e)
- {
- base.OnInit (e);
- ArrayList themes = new ArrayList();
- if (StyleSheetPageTheme != null && StyleSheetPageTheme.GetStyleSheets () != null)
- themes.AddRange (StyleSheetPageTheme.GetStyleSheets ());
- if (PageTheme != null && PageTheme.GetStyleSheets () != null)
- themes.AddRange (PageTheme.GetStyleSheets ());
- if (themes.Count > 0 && Header == null)
- throw new InvalidOperationException ("Using themed css files requires a header control on the page.");
- foreach (string lss in themes) {
- HtmlLink hl = new HtmlLink ();
- hl.Href = lss;
- hl.Attributes["type"] = "text/css";
- hl.Attributes["rel"] = "stylesheet";
- Header.Controls.Add (hl);
- }
- }
- #endif
- #if NET_2_0
- [MonoTODO ("Not implemented. Only used by .net aspx parser")]
- protected object GetWrappedFileDependencies (string [] list)
- {
- return list;
- }
- [MonoTODO ("Does nothing. Used by .net aspx parser")]
- protected virtual void InitializeCulture ()
- {
- }
- [MonoTODO ("Does nothing. Used by .net aspx parser")]
- protected internal void AddWrappedFileDependencies (object virtualFileDependencies)
- {
- }
- #endif
- }
- }
|