Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / 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
- MetadataArtifactLoaderResource.cs
- Peer.cs
- TransformedBitmap.cs
- FontWeight.cs
- PrintDialogException.cs
- EntityDataSourceStatementEditorForm.cs
- SmtpNetworkElement.cs
- DbProviderSpecificTypePropertyAttribute.cs
- MultiTargetingUtil.cs
- ProxyWebPart.cs
- FamilyMap.cs
- ObjectResult.cs
- SerializationEventsCache.cs
- CapabilitiesSection.cs
- AutomationPatternInfo.cs
- AnnotationDocumentPaginator.cs
- SystemTcpConnection.cs
- DummyDataSource.cs
- RadioButtonAutomationPeer.cs
- HebrewCalendar.cs
- RewritingValidator.cs
- COM2ColorConverter.cs
- BuildProvider.cs
- GeneralTransform.cs
- UpWmlMobileTextWriter.cs
- HtmlEmptyTagControlBuilder.cs
- AutomationElement.cs
- TransformBlockRequest.cs
- Wrapper.cs
- JulianCalendar.cs
- InheritedPropertyChangedEventArgs.cs
- SafeNativeMethodsOther.cs
- FilePresentation.cs
- BatchParser.cs
- TargetPerspective.cs
- PointCollection.cs
- MetadataArtifactLoaderCompositeResource.cs
- XsltInput.cs
- MethodCallTranslator.cs
- StringDictionaryCodeDomSerializer.cs
- PathNode.cs
- DatePickerTextBox.cs
- EventLogPermissionEntryCollection.cs
- URI.cs
- BamlVersionHeader.cs
- PeerNameRecord.cs
- CacheSection.cs
- SchemaObjectWriter.cs
- DSACryptoServiceProvider.cs
- Visitors.cs
- Types.cs
- wpf-etw.cs
- HttpRawResponse.cs
- X509Utils.cs
- ProcessProtocolHandler.cs
- NativeMethods.cs
- IteratorFilter.cs
- DbModificationCommandTree.cs
- VsPropertyGrid.cs
- EventListenerClientSide.cs
- BuildProvider.cs
- JsonDeserializer.cs
- ExpressionHelper.cs
- CustomCategoryAttribute.cs
- PersistenceException.cs
- DataGridViewTextBoxCell.cs
- NameTable.cs
- HelpKeywordAttribute.cs
- SqlParameterizer.cs
- BufferedWebEventProvider.cs
- TextPointerBase.cs
- ScriptReferenceEventArgs.cs
- UInt16Converter.cs
- URLIdentityPermission.cs
- ResourceIDHelper.cs
- UnmanagedMemoryStreamWrapper.cs
- PerformanceCounterLib.cs
- NativeCppClassAttribute.cs
- SqlUserDefinedAggregateAttribute.cs
- UpDownBase.cs
- GetRecipientListRequest.cs
- HttpPostedFileWrapper.cs
- XmlSchemaImporter.cs
- EllipticalNodeOperations.cs
- ModelPropertyImpl.cs
- FontWeights.cs
- DocComment.cs
- AsyncCodeActivity.cs
- RenderingBiasValidation.cs
- FileSystemInfo.cs
- GenericRootAutomationPeer.cs
- PlatformNotSupportedException.cs
- AlgoModule.cs
- UshortList2.cs
- TextBoxAutoCompleteSourceConverter.cs
- DelegateHelpers.cs
- WorkflowMessageEventArgs.cs
- Attributes.cs
- EntityContainerRelationshipSetEnd.cs
- WindowsPrincipal.cs