Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / ui / ScriptControl.cs / 1 / ScriptControl.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Security.Permissions;
using System.Web;
using System.Web.Resources;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Util;
[
AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal),
AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal),
]
public abstract class ScriptControl : WebControl, IScriptControl {
private IScriptManagerInternal _scriptManager;
private new IPage _page;
protected ScriptControl() {
}
internal ScriptControl(IScriptManagerInternal scriptManager, IPage page) {
_scriptManager = scriptManager;
_page = page;
}
private IPage IPage {
get {
if (_page != null) {
return _page;
}
else {
Page page = Page;
if (page == null) {
throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
}
return new PageWrapper(page);
}
}
}
private IScriptManagerInternal ScriptManager {
get {
if (_scriptManager == null) {
Page page = Page;
if (page == null) {
throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
}
_scriptManager = System.Web.UI.ScriptManager.GetCurrent(page);
if (_scriptManager == null) {
throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture,
AtlasWeb.Common_ScriptManagerRequired, ID));
}
}
return _scriptManager;
}
}
[SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers")]
protected internal override void OnPreRender(EventArgs e) {
base.OnPreRender(e);
ScriptManager.RegisterScriptControl(this);
}
protected internal override void Render(HtmlTextWriter writer) {
base.Render(writer);
// DevDiv 97460: ScriptDescriptors only render if in server form, verify to avoid silently failing.
IPage.VerifyRenderingInServerForm(this);
// ScriptManager cannot be found in DesignMode, so do not attempt to register scripts.
if (!DesignMode) {
ScriptManager.RegisterScriptDescriptors(this);
}
}
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
Justification = "Implementation will likely return a new collection, which is too slow for a property")]
protected abstract IEnumerable GetScriptDescriptors();
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
Justification = "Implementation will likely return a new collection, which is too slow for a property")]
protected abstract IEnumerable GetScriptReferences();
#region IScriptControl Members
IEnumerable IScriptControl.GetScriptDescriptors() {
return GetScriptDescriptors();
}
IEnumerable IScriptControl.GetScriptReferences() {
return GetScriptReferences();
}
#endregion
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Security.Permissions;
using System.Web;
using System.Web.Resources;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.Util;
[
AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal),
AspNetHostingPermission(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal),
]
public abstract class ScriptControl : WebControl, IScriptControl {
private IScriptManagerInternal _scriptManager;
private new IPage _page;
protected ScriptControl() {
}
internal ScriptControl(IScriptManagerInternal scriptManager, IPage page) {
_scriptManager = scriptManager;
_page = page;
}
private IPage IPage {
get {
if (_page != null) {
return _page;
}
else {
Page page = Page;
if (page == null) {
throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
}
return new PageWrapper(page);
}
}
}
private IScriptManagerInternal ScriptManager {
get {
if (_scriptManager == null) {
Page page = Page;
if (page == null) {
throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
}
_scriptManager = System.Web.UI.ScriptManager.GetCurrent(page);
if (_scriptManager == null) {
throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture,
AtlasWeb.Common_ScriptManagerRequired, ID));
}
}
return _scriptManager;
}
}
[SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers")]
protected internal override void OnPreRender(EventArgs e) {
base.OnPreRender(e);
ScriptManager.RegisterScriptControl(this);
}
protected internal override void Render(HtmlTextWriter writer) {
base.Render(writer);
// DevDiv 97460: ScriptDescriptors only render if in server form, verify to avoid silently failing.
IPage.VerifyRenderingInServerForm(this);
// ScriptManager cannot be found in DesignMode, so do not attempt to register scripts.
if (!DesignMode) {
ScriptManager.RegisterScriptDescriptors(this);
}
}
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
Justification = "Implementation will likely return a new collection, which is too slow for a property")]
protected abstract IEnumerable GetScriptDescriptors();
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
Justification = "Implementation will likely return a new collection, which is too slow for a property")]
protected abstract IEnumerable GetScriptReferences();
#region IScriptControl Members
IEnumerable IScriptControl.GetScriptDescriptors() {
return GetScriptDescriptors();
}
IEnumerable IScriptControl.GetScriptReferences() {
return GetScriptReferences();
}
#endregion
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConnectionStringsSection.cs
- XPathNodeInfoAtom.cs
- DesignerActionGlyph.cs
- WindowsTitleBar.cs
- SafeRegistryHandle.cs
- InstanceKey.cs
- HostProtectionException.cs
- DesignerGenericWebPart.cs
- SiteMembershipCondition.cs
- MemberAssignment.cs
- BoundingRectTracker.cs
- XmlSchemaImporter.cs
- DataMemberListEditor.cs
- BaseDataList.cs
- CompilerError.cs
- DataSourceExpression.cs
- SelectionEditor.cs
- CodeTypeDeclarationCollection.cs
- DefaultTraceListener.cs
- XmlCharacterData.cs
- OrthographicCamera.cs
- SessionSwitchEventArgs.cs
- MarkedHighlightComponent.cs
- CompilerError.cs
- CipherData.cs
- exports.cs
- StringConverter.cs
- SqlTypeConverter.cs
- ViewManager.cs
- XmlSchemaAnnotated.cs
- DependencyPropertyKey.cs
- TargetParameterCountException.cs
- CalendarDesigner.cs
- DocumentViewerConstants.cs
- dbdatarecord.cs
- ToolboxComponentsCreatingEventArgs.cs
- ChildTable.cs
- ServerIdentity.cs
- PrimitiveXmlSerializers.cs
- XmlnsPrefixAttribute.cs
- WorkflowIdleBehavior.cs
- StrokeCollection2.cs
- InvokePatternIdentifiers.cs
- ModuleBuilderData.cs
- XNodeNavigator.cs
- SqlRecordBuffer.cs
- Vector3DAnimation.cs
- NamespaceDecl.cs
- BuildProvidersCompiler.cs
- FormCollection.cs
- InternalPolicyElement.cs
- DesignDataSource.cs
- StreamReader.cs
- __Filters.cs
- FactoryId.cs
- BamlReader.cs
- ComponentEvent.cs
- TableRowCollection.cs
- SubqueryRules.cs
- UIInitializationException.cs
- SqlConnectionPoolGroupProviderInfo.cs
- TrackingRecord.cs
- BadImageFormatException.cs
- WmpBitmapDecoder.cs
- TextParagraphView.cs
- RelOps.cs
- XPathScanner.cs
- BufferBuilder.cs
- RoutedEventArgs.cs
- Compiler.cs
- EmptyStringExpandableObjectConverter.cs
- SchemaCollectionPreprocessor.cs
- Package.cs
- EdmComplexPropertyAttribute.cs
- ColumnHeaderConverter.cs
- CustomSignedXml.cs
- NavigationCommands.cs
- ViewValidator.cs
- HtmlInputHidden.cs
- Visual3D.cs
- OleDbTransaction.cs
- HandlerBase.cs
- Point3DAnimationUsingKeyFrames.cs
- Opcode.cs
- GAC.cs
- ToolZone.cs
- ProcessStartInfo.cs
- MessageDecoder.cs
- PasswordRecoveryAutoFormat.cs
- DBSqlParserColumn.cs
- SessionParameter.cs
- XPathDescendantIterator.cs
- RowSpanVector.cs
- ThreadExceptionDialog.cs
- DesignerCategoryAttribute.cs
- SharedPersonalizationStateInfo.cs
- DecimalConstantAttribute.cs
- MessageHeaderInfoTraceRecord.cs
- GlyphRun.cs
- XamlTypeMapper.cs