Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / ScriptRegistrationManager.cs / 2 / ScriptRegistrationManager.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Diagnostics; using System.Globalization; using System.Text; using System.Text.RegularExpressions; using System.Web.UI; using System.Web.Resources; using System.Web.Script.Serialization; internal sealed class ScriptRegistrationManager { private static Regex ScriptTagRegex = new Regex( @"", indexOfEndOfScriptBeginTag, StringComparison.OrdinalIgnoreCase); if (indexOfScriptEndTag == -1) { throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptRegistrationManager_NoCloseTag, activeRegistration.Type.FullName, activeRegistration.Key)); } string scriptBlockContents = scriptContent.Substring(indexOfEndOfScriptBeginTag, (indexOfScriptEndTag - indexOfEndOfScriptBeginTag)); // Turn the text content into a text attribute attrs.Add("text", scriptBlockContents); lastIndex = indexOfScriptEndTag + 9; } // Process all the explicit attributes on the script tag CaptureCollection attrnames = match.Groups["attrname"].Captures; CaptureCollection attrvalues = match.Groups["attrval"].Captures; for (int i = 0; i < attrnames.Count; i++) { string attribName = attrnames[i].ToString(); string attribValue = attrvalues[i].ToString(); // DevDev Bugs 123213: script elements registered with RegisterStartupScript are normally rendered // into the html of the page. Any html encoded values in the attributes are interpreted by the // browser, so the actual data is not html encoded. We must HtmlDecode any attribute values we find // here to remain consistent during async posts, since the data will be dynamically injected into // the dom, bypassing the browser's natural html decoding. attribValue = HttpUtility.HtmlDecode(attribValue); attrs.Add(attribName, attribValue); } // Serialize the attributes to JSON and write them out JavaScriptSerializer serializer = JavaScriptSerializer.CreateInstance(); string attrText = serializer.Serialize(attrs); PageRequestManager.EncodeString(writer, token, "ScriptContentWithTags", attrText); } CheckScriptTagTweenSpace(activeRegistration, scriptContent, lastIndex, scriptContent.Length - lastIndex); if (lastIndex == 0) { throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptRegistrationManager_NoTags, activeRegistration.Type.FullName, activeRegistration.Key)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StringBuilder.cs
- Function.cs
- PersonalizableTypeEntry.cs
- RecordManager.cs
- CodeObjectCreateExpression.cs
- objectquery_tresulttype.cs
- Empty.cs
- DocumentViewerBase.cs
- ArcSegment.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- SchemaInfo.cs
- Registry.cs
- ColumnCollection.cs
- GridViewDeleteEventArgs.cs
- TabControl.cs
- ImageList.cs
- BooleanStorage.cs
- CustomAssemblyResolver.cs
- ValuePatternIdentifiers.cs
- MinMaxParagraphWidth.cs
- MessageEncoderFactory.cs
- Matrix3DStack.cs
- AccessText.cs
- SecurityKeyUsage.cs
- DataGridTableStyleMappingNameEditor.cs
- HandlerBase.cs
- MenuItemBindingCollection.cs
- NewArrayExpression.cs
- FileUpload.cs
- TagNameToTypeMapper.cs
- ComPlusTraceRecord.cs
- TemplatedAdorner.cs
- ApplicationProxyInternal.cs
- AddInControllerImpl.cs
- Padding.cs
- DependencyPropertyHelper.cs
- configsystem.cs
- DependencySource.cs
- TextRunCache.cs
- ExpandCollapsePattern.cs
- Thread.cs
- MetadataImporter.cs
- XPathDocumentIterator.cs
- SafeFileMapViewHandle.cs
- FlowPanelDesigner.cs
- SqlExpressionNullability.cs
- ElapsedEventArgs.cs
- ListCollectionView.cs
- ErrorWebPart.cs
- GlyphRun.cs
- ExpressionEvaluator.cs
- ResourceDescriptionAttribute.cs
- TextParentUndoUnit.cs
- CodeCastExpression.cs
- TailPinnedEventArgs.cs
- EnumValidator.cs
- DataObjectMethodAttribute.cs
- DataGridItemCollection.cs
- MimeParameterWriter.cs
- RevocationPoint.cs
- XmlUTF8TextWriter.cs
- ThreadAttributes.cs
- ModelFactory.cs
- FunctionImportElement.cs
- KeyValueConfigurationCollection.cs
- _KerberosClient.cs
- DivideByZeroException.cs
- XamlStyleSerializer.cs
- PolyLineSegment.cs
- TextSearch.cs
- WeakEventTable.cs
- TrackBarRenderer.cs
- ImageKeyConverter.cs
- GlyphRunDrawing.cs
- TileBrush.cs
- LiteralControl.cs
- TextDecorationCollection.cs
- WebServicesInteroperability.cs
- EndpointDesigner.cs
- RecognitionResult.cs
- DbConnectionStringCommon.cs
- FloaterParagraph.cs
- TreeNodeStyle.cs
- ClientTargetSection.cs
- ClientProxyGenerator.cs
- ExpressionReplacer.cs
- Quad.cs
- Stylus.cs
- MessageSecurityOverTcp.cs
- SQLByte.cs
- _LazyAsyncResult.cs
- CngAlgorithmGroup.cs
- ComponentDispatcherThread.cs
- SpoolingTaskBase.cs
- ReadOnlyHierarchicalDataSourceView.cs
- StructureChangedEventArgs.cs
- HealthMonitoringSectionHelper.cs
- SimpleBitVector32.cs
- MimeParameter.cs
- StopStoryboard.cs