Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Adapters / XhtmlAdapters / XhtmlBasicTextBoxAdapter.cs / 1305376 / XhtmlBasicTextBoxAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Security.Permissions; using System.Web.UI; using System.Web.Mobile; using System.Web.UI.MobileControls; using System.Web.UI.MobileControls.Adapters; using System.Globalization; #if COMPILING_FOR_SHIPPED_SOURCE namespace System.Web.UI.MobileControls.ShippedAdapterSource.XhtmlAdapters #else namespace System.Web.UI.MobileControls.Adapters.XhtmlAdapters #endif { ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class XhtmlTextBoxAdapter : XhtmlControlAdapter { /// public new TextBox Control { get { return base.Control as TextBox; } } // Used for optimization in RenderAsHiddenField. private String _staticValue; /// public override void OnInit(EventArgs e) { _staticValue = Control.Text; base.OnInit(e); } /// public override void Render(XhtmlMobileTextWriter writer) { ConditionalClearPendingBreak(writer); ConditionalEnterStyle(writer, Style); ConditionalRenderOpeningSpanElement(writer); if ((String) Device[XhtmlConstants.RequiresOnEnterForward] == "true") { writer.AddOnEnterForwardSetVar(Control.UniqueID, Control.Text); } writer.WriteBeginTag("input"); writer.WriteAttribute("name", Control.UniqueID); ConditionalRenderCustomAttribute(writer, XhtmlConstants.AccessKeyCustomAttribute); String controlText = Control.Text; if (controlText != null && controlText.Length > 0 && !Control.Password) { writer.Write(" value=\""); writer.WriteEncodedText(controlText); writer.Write("\""); } if (Control.Size > 0) { writer.WriteAttribute("size", Control.Size.ToString(CultureInfo.InvariantCulture)); } if (Control.MaxLength > 0) { writer.WriteAttribute("maxlength", Control.MaxLength.ToString(CultureInfo.InvariantCulture)); } String requiresType = Device["requiresInputTypeAttribute"]; if (Control.Password) { writer.WriteAttribute("type", "password"); } // InvariantCulture not needed, but included for best practices. else if (requiresType != null && String.Equals(requiresType, "true", StringComparison.OrdinalIgnoreCase)) { writer.WriteAttribute("type", "text"); } writer.Write("/>"); // ConditionalSetPendingBreak should always be called *before* ConditionalExitStyle. // ConditionalExitStyle may render a block element and clear the pending break. ConditionalSetPendingBreakAfterInline(writer); ConditionalRenderClosingSpanElement(writer); ConditionalExitStyle(writer, Style); } /// protected override void RenderAsHiddenInputField(XhtmlMobileTextWriter writer) { // Optimization - if viewstate is enabled for this control, and the // postback returns to this page, we just let it do the trick. if (Control.Form.Action.Length > 0 || (!IsViewStateEnabled() && Control.Text != _staticValue)) { writer.WriteHiddenField(Control.UniqueID, Control.Text); } } private bool IsViewStateEnabled() { Control ctl = Control; while (ctl != null) { if (!ctl.EnableViewState) { return false; } ctl = ctl.Parent; } return true; } } } // 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
- SpellCheck.cs
- grammarelement.cs
- ThemeDirectoryCompiler.cs
- DocumentPageView.cs
- EventWaitHandleSecurity.cs
- ApplySecurityAndSendAsyncResult.cs
- ProfileGroupSettings.cs
- ObjectDataSourceStatusEventArgs.cs
- FlowLayoutPanelDesigner.cs
- GuidelineSet.cs
- IriParsingElement.cs
- NamespaceEmitter.cs
- ActivityBuilderHelper.cs
- CreateUserWizard.cs
- ExtensionQuery.cs
- ReservationNotFoundException.cs
- FacetChecker.cs
- RectValueSerializer.cs
- ByteStreamGeometryContext.cs
- ThicknessKeyFrameCollection.cs
- SmtpTransport.cs
- DependencyPropertyConverter.cs
- Menu.cs
- MergeFailedEvent.cs
- MetaModel.cs
- CacheDict.cs
- MsmqChannelListenerBase.cs
- ViewStateException.cs
- ChtmlSelectionListAdapter.cs
- SigningCredentials.cs
- WebPartsSection.cs
- Config.cs
- SourceElementsCollection.cs
- WebPartExportVerb.cs
- BookmarkEventArgs.cs
- PageContent.cs
- XmlExceptionHelper.cs
- ToolStripOverflowButton.cs
- ExceptionValidationRule.cs
- ImageMap.cs
- IDataContractSurrogate.cs
- ShaperBuffers.cs
- SerializableAttribute.cs
- ContentDisposition.cs
- MatrixConverter.cs
- ConfigurationException.cs
- Point3DValueSerializer.cs
- BaseComponentEditor.cs
- HttpClientCertificate.cs
- NameValueCollection.cs
- DisableDpiAwarenessAttribute.cs
- SqlWebEventProvider.cs
- BatchWriter.cs
- SelectionHighlightInfo.cs
- FreezableCollection.cs
- Imaging.cs
- DisplayToken.cs
- IdleTimeoutMonitor.cs
- SafeLocalAllocation.cs
- SchemaImporterExtensionsSection.cs
- InternalDuplexChannelListener.cs
- SocketElement.cs
- ZoomingMessageFilter.cs
- FormViewActionList.cs
- EncodingFallbackAwareXmlTextWriter.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- PropertyTabAttribute.cs
- SerialReceived.cs
- CellParagraph.cs
- DataGridViewButtonColumn.cs
- FindResponse.cs
- WpfMemberInvoker.cs
- Constant.cs
- TokenBasedSet.cs
- ChildTable.cs
- PasswordTextContainer.cs
- MergablePropertyAttribute.cs
- VisualStateManager.cs
- OrderedEnumerableRowCollection.cs
- PriorityBindingExpression.cs
- QuerySettings.cs
- RuntimeWrappedException.cs
- LocatorPartList.cs
- LogEntrySerializationException.cs
- MobileResource.cs
- QuaternionAnimation.cs
- DateTimeParse.cs
- DataSourceCollectionBase.cs
- WebPartExportVerb.cs
- EntitySetBaseCollection.cs
- GridSplitterAutomationPeer.cs
- NavigationEventArgs.cs
- WindowsIdentity.cs
- FormatException.cs
- RowToParametersTransformer.cs
- _NetRes.cs
- _HTTPDateParse.cs
- SystemWebCachingSectionGroup.cs
- StartUpEventArgs.cs
- EntityProviderFactory.cs