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
|
//
// UpdatePanel.cs
//
// Authors:
// Igor Zelmanovich <igorz@mainsoft.com>
// Marek Habersack <grendel@twistedcode.net>
//
// (C) 2007 Mainsoft, Inc. http://www.mainsoft.com
// (C) 2007-2010 Novell, Inc (http://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.Generic;
using System.Text;
using System.ComponentModel;
using System.Security.Permissions;
using System.IO;
namespace System.Web.UI
{
[DesignerAttribute ("System.Web.UI.Design.UpdatePanelDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
[DefaultPropertyAttribute ("Triggers")]
[ParseChildrenAttribute (true)]
[PersistChildrenAttribute (false)]
[AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
[AspNetHostingPermissionAttribute (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
public class UpdatePanel : Control
{
sealed class SingleChildControlCollection : ControlCollection
{
public SingleChildControlCollection (Control owner)
: base (owner)
{}
internal void AddInternal (Control child)
{
base.Add (child);
}
public override void Add (Control child)
{
throw GetNoChildrenException ();
}
public override void AddAt (int index, Control child)
{
throw GetNoChildrenException ();
}
public override void Clear ()
{
throw GetNoChildrenException ();
}
public override void Remove (Control value)
{
throw GetNoChildrenException ();
}
public override void RemoveAt (int index)
{
throw GetNoChildrenException ();
}
InvalidOperationException GetNoChildrenException ()
{
return new InvalidOperationException ("The Controls property of UpdatePanel with ID '" + Owner.ID + "' cannot be modified directly. To change the contents of the UpdatePanel modify the child controls of the ContentTemplateContainer property.");
}
}
ITemplate _contentTemplate;
Control _contentTemplateContainer;
UpdatePanelUpdateMode _updateMode = UpdatePanelUpdateMode.Always;
bool _childrenAsTriggers = true;
bool _requiresUpdate;
bool _inPartialRendering;
UpdatePanelTriggerCollection _triggers;
UpdatePanelRenderMode _renderMode = UpdatePanelRenderMode.Block;
ScriptManager _scriptManager;
Control cachedParent;
UpdatePanel parentPanel;
bool parentPanelChecked;
UpdatePanel ParentPanel {
get {
Control parent = Parent;
if (cachedParent == parent && parentPanelChecked)
return parentPanel;
cachedParent = parent;
parentPanel = FindParentPanel (parent);
return parentPanel;
}
}
[Category ("Behavior")]
[DefaultValue (true)]
public bool ChildrenAsTriggers {
get {
return _childrenAsTriggers;
}
set {
_childrenAsTriggers = value;
}
}
[TemplateInstance (TemplateInstance.Single)]
[PersistenceMode (PersistenceMode.InnerProperty)]
[Browsable (false)]
public ITemplate ContentTemplate {
get {
return _contentTemplate;
}
set {
_contentTemplate = value;
}
}
[Browsable (false)]
public Control ContentTemplateContainer {
get {
if (_contentTemplateContainer == null) {
_contentTemplateContainer = CreateContentTemplateContainer ();
((SingleChildControlCollection) Controls).AddInternal (_contentTemplateContainer);
}
return _contentTemplateContainer;
}
}
public override sealed ControlCollection Controls {
get { return base.Controls; }
}
[Browsable (false)]
public bool IsInPartialRendering {
get { return _inPartialRendering; }
}
[Category ("Layout")]
public UpdatePanelRenderMode RenderMode {
get {
return _renderMode;
}
set {
_renderMode = value;
}
}
protected internal virtual bool RequiresUpdate {
get {
return UpdateMode == UpdatePanelUpdateMode.Always || _requiresUpdate || AnyTriggersFired ();
}
}
internal ScriptManager ScriptManager {
get {
if (_scriptManager == null) {
_scriptManager = ScriptManager.GetCurrent (Page);
if (_scriptManager == null)
throw new InvalidOperationException (String.Format ("The control with ID '{0}' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it.", ID));
}
return _scriptManager;
}
}
[MergableProperty (false)]
[DefaultValue ("")]
[PersistenceMode (PersistenceMode.InnerProperty)]
[Category ("Behavior")]
public UpdatePanelTriggerCollection Triggers {
get {
if (_triggers == null)
_triggers = new UpdatePanelTriggerCollection (this);
return _triggers;
}
}
bool AnyTriggersFired ()
{
if (_triggers == null || _triggers.Count == 0)
return false;
foreach (UpdatePanelTrigger trigger in _triggers)
if (trigger.HasTriggered ())
return true;
return false;
}
[Category ("Behavior")]
[DefaultValueAttribute (UpdatePanelUpdateMode.Always)]
public UpdatePanelUpdateMode UpdateMode {
get {
return _updateMode;
}
set {
_updateMode = value;
}
}
// Used by nested panels (see bug #542441)
ScriptManager.AlternativeHtmlTextWriter RenderChildrenWriter { get; set; }
protected virtual Control CreateContentTemplateContainer ()
{
return new Control ();
}
protected override sealed ControlCollection CreateControlCollection ()
{
return new SingleChildControlCollection (this);
}
protected internal virtual void Initialize ()
{
if (_triggers == null || _triggers.Count == 0 || !ScriptManager.SupportsPartialRendering)
return;
_triggers.Initialize ();
}
protected internal override void OnInit (EventArgs e) {
base.OnInit (e);
ScriptManager.RegisterUpdatePanel (this);
if (ParentPanel != null)
ScriptManager.RegisterChildUpdatePanel (this);
if (ContentTemplate != null)
ContentTemplate.InstantiateIn (ContentTemplateContainer);
}
protected internal override void OnLoad (EventArgs e) {
base.OnLoad (e);
Initialize ();
}
protected internal override void OnPreRender (EventArgs e) {
base.OnPreRender (e);
if (UpdateMode == UpdatePanelUpdateMode.Always && !ChildrenAsTriggers)
throw new InvalidOperationException (String.Format ("ChildrenAsTriggers cannot be set to false when UpdateMode is set to Always on UpdatePanel '{0}'", ID));
}
protected internal override void OnUnload (EventArgs e) {
base.OnUnload (e);
}
protected internal override void Render (HtmlTextWriter writer) {
writer.AddAttribute (HtmlTextWriterAttribute.Id, ClientID);
if (RenderMode == UpdatePanelRenderMode.Block)
writer.RenderBeginTag (HtmlTextWriterTag.Div);
else
writer.RenderBeginTag (HtmlTextWriterTag.Span);
RenderChildren (writer);
writer.RenderEndTag ();
}
UpdatePanel FindParentPanel (Control parent)
{
parentPanelChecked = true;
while (parent != null) {
UpdatePanel panel = parent as UpdatePanel;
if (panel != null)
return panel;
parent = parent.Parent;
}
return null;
}
protected internal override void RenderChildren (HtmlTextWriter writer)
{
RenderChildrenWriter = null;
if (IsInPartialRendering) {
ScriptManager.AlternativeHtmlTextWriter altWriter = writer as ScriptManager.AlternativeHtmlTextWriter;
if (altWriter == null)
altWriter = writer.InnerWriter as ScriptManager.AlternativeHtmlTextWriter;
if (altWriter == null) {
UpdatePanel parentPanel = ParentPanel;
if (parentPanel != null)
altWriter = parentPanel.RenderChildrenWriter;
}
if (altWriter == null)
throw new InvalidOperationException ("Internal error. Invalid writer object.");
// Used by nested panels (see bug #542441)
RenderChildrenWriter = altWriter;
try {
HtmlTextWriter responseOutput = altWriter.ResponseOutput;
StringBuilder sb = new StringBuilder ();
HtmlTextWriter w = new HtmlTextWriter (new StringWriter (sb));
base.RenderChildren (w);
w.Flush ();
UpdatePanel parent = ParentPanel;
if (parent != null && parent.ChildrenAsTriggers)
writer.Write (sb.ToString ());
else
ScriptManager.WriteCallbackPanel (responseOutput, this, sb);
} finally {
RenderChildrenWriter = null;
}
} else
base.RenderChildren (writer);
}
internal void SetInPartialRendering (bool setting)
{
_inPartialRendering = setting;
}
public void Update ()
{
if (UpdateMode == UpdatePanelUpdateMode.Always)
throw new InvalidOperationException ("The Update method can only be called on UpdatePanel with ID '" + ID + "' when UpdateMode is set to Conditional.");
_requiresUpdate = true;
}
}
}
|