22 writes to Text
System.Web.Mobile (22)
UI\MobileControls\Adapters\ChtmlCalendarAdapter.cs (2)
441
_textBox.
Text
= Control.VisibleDate.ToString(numericDateFormat, CultureInfo.InvariantCulture);
446
_command.
Text
= GetDefaultLabel(OKLabel);
UI\MobileControls\Adapters\HtmlValidationSummaryAdapter.cs (1)
92
_link.
Text
= String.IsNullOrEmpty(Control.BackLabel) ? GetDefaultLabel(BackLabel) : Control.BackLabel;
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (1)
418
_textBox.
Text
= Control.VisibleDate.ToString(numericDateFormat, CultureInfo.InvariantCulture);
UI\MobileControls\Adapters\WmlValidationSummaryAdapter.cs (1)
91
_link.
Text
= Control.BackLabel.Length == 0 ? GetDefaultLabel(BackLabel) : Control.BackLabel;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (2)
386
_textBox.
Text
= Control.VisibleDate.ToString(numericDateFormat, CultureInfo.CurrentCulture);
391
_command.
Text
= GetDefaultLabel(OKLabel);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicValidationSummaryAdapter.cs (1)
79
_link.
Text
= controlBackLabel == null || controlBackLabel.Length == 0 ? GetDefaultLabel(BackLabel) : controlBackLabel;
UI\MobileControls\Design\CommandDesigner.cs (2)
87
_command.
Text
= "[" + _command.ID + "]";
98
_command.
Text
= originalText;
UI\MobileControls\Design\LabelDesigner.cs (2)
90
_label.
Text
= "[" + _label.ID + "]";
101
_label.
Text
= originalText;
UI\MobileControls\Design\LinkDesigner.cs (2)
90
_link.
Text
= "[" + _link.ID + "]";
101
_link.
Text
= originalText;
UI\MobileControls\Design\MobileControlDesigner.cs (2)
379
((TextControl)_mobileControl).
Text
= String.Empty;
402
((TextControl)_mobileControl).
Text
= originalText;
UI\MobileControls\Design\PhoneCallDesigner.cs (2)
91
_call.
Text
= "[" + _call.ID + "]";
102
_call.
Text
= originalText;
UI\MobileControls\ErrorFormatterPage.cs (3)
74
label.
Text
= text;
123
label.
Text
= SR.GetString(SR.ErrorFormatterPage_File, ErrorInfo.File);
127
label.
Text
= SR.GetString(SR.ErrorFormatterPage_Line, ErrorInfo.LineNumber);
UI\MobileControls\TextBox.cs (1)
59
Text
= value;
68 references to Text
System.Web.Mobile (68)
UI\MobileControls\Adapters\ChtmlCalendarAdapter.cs (1)
605
String dateText = _textBox.
Text
;
UI\MobileControls\Adapters\HtmlCommandAdapter.cs (4)
76
writer.WriteText(Control.
Text
, true);
82
writer.WriteText(Control.
Text
, true);
97
writer.WriteAttribute("alt", Control.
Text
, true);
103
writer.WriteText(Control.
Text
, true);
UI\MobileControls\Adapters\HtmlLabelAdapter.cs (3)
67
(String.IsNullOrEmpty(Control.
Text
) || WhiteSpace(Control.
Text
) ) )
73
writer.WriteText(Control.
Text
, true);
UI\MobileControls\Adapters\HtmlLinkAdapter.cs (2)
47
writer.WriteText(String.IsNullOrEmpty(Control.
Text
) ? navigateUrl : Control.
Text
, true);
UI\MobileControls\Adapters\HtmlPhoneCallAdapter.cs (2)
50
String text = Control.
Text
;
77
String text = String.Format(CultureInfo.CurrentCulture, Control.AlternateFormat, Control.
Text
,
UI\MobileControls\Adapters\HtmlTextBoxAdapter.cs (6)
42
_staticValue = Control.
Text
;
55
if ((Control.
Text
== null || Control.
Text
.Length > 0) && !Control.Password)
58
writer.WriteText(Control.
Text
, true);
101
if (Control.Form.Action.Length > 0 || (!IsViewStateEnabled() && Control.
Text
!= _staticValue))
103
writer.WriteHiddenField(Control.UniqueID, Control.
Text
);
UI\MobileControls\Adapters\HtmlValidatorAdapter.cs (2)
51
if (!String.IsNullOrEmpty(Control.
Text
))
53
writer.WriteText(Control.
Text
, true);
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (1)
582
String dateText = _textBox.
Text
;
UI\MobileControls\Adapters\WmlCommandAdapter.cs (1)
46
RenderSubmitEvent(writer, Control.SoftkeyLabel, Control.
Text
, Control.BreakAfter);
UI\MobileControls\Adapters\WmlLabelAdapter.cs (1)
46
writer.RenderText(Control.
Text
, Control.BreakAfter);
UI\MobileControls\Adapters\WmlLinkAdapter.cs (3)
46
String text = (String.IsNullOrEmpty(Control.
Text
)) ? navigateUrl : Control.
Text
;
53
softkeyLabel = Control.
Text
;
UI\MobileControls\Adapters\WmlPhoneCallAdapter.cs (1)
48
String controlText = Control.
Text
;
UI\MobileControls\Adapters\WmlTextBoxAdapter.cs (4)
48
_staticValue = Control.
Text
;
55
String value = Control.
Text
;
119
if (Control.Form.Action.Length > 0 || (!IsViewStateEnabled() && Control.
Text
!= _staticValue))
121
return Control.
Text
;
UI\MobileControls\Adapters\WmlValidatorAdapter.cs (1)
50
String text = Control.
Text
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (1)
538
String dateText = _textBox.
Text
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCommandAdapter.cs (2)
77
writer.WriteAttribute("alt", Control.
Text
, true);
92
writer.WriteAttribute("value", Control.
Text
, true);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicLabelAdapter.cs (2)
33
ConditionalClearCachedEndTag(writer, Control.
Text
);
37
writer.WriteEncodedText(Control.
Text
);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicLinkAdapter.cs (1)
39
String controlText = Control.
Text
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPhoneCallAdapter.cs (2)
43
String text = Control.
Text
;
86
Control.
Text
,
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicTextBoxAdapter.cs (5)
39
_staticValue = Control.
Text
;
50
writer.AddOnEnterForwardSetVar(Control.UniqueID, Control.
Text
);
58
String controlText = Control.
Text
;
96
if (Control.Form.Action.Length > 0 || (!IsViewStateEnabled() && Control.
Text
!= _staticValue)) {
97
writer.WriteHiddenField(Control.UniqueID, Control.
Text
);
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicValidatorAdapter.cs (3)
40
String controlText = Control.
Text
;
44
ConditionalClearCachedEndTag(writer, Control.
Text
);
45
writer.WriteEncodedText (Control.
Text
);
UI\MobileControls\Design\Adapters\DesignerCommandAdapter.cs (2)
68
String controlText = Control.
Text
;
174
((DesignerTextWriter)writer).WriteCssStyleText(Style, null, Control.
Text
, true);
UI\MobileControls\Design\Adapters\DesignerLabelAdapter.cs (1)
64
((DesignerTextWriter)writer).WriteCssStyleText(Style, null, Control.
Text
, true);
UI\MobileControls\Design\Adapters\DesignerLinkAdapter.cs (1)
64
((DesignerTextWriter)writer).WriteCssStyleText(Style, null, Control.
Text
, true);
UI\MobileControls\Design\Adapters\DesignerTextBoxAdapter.cs (2)
156
if (!String.IsNullOrEmpty(Control.
Text
))
159
writer.WriteText(Control.
Text
, true);
UI\MobileControls\Design\Adapters\DesignerValidatorAdapter.cs (2)
63
if (Control.
Text
.Trim().Length > 0)
65
((DesignerTextWriter)writer).WriteCssStyleText(Style, null, Control.
Text
, true);
UI\MobileControls\Design\BaseValidatorDesigner.cs (2)
83
Debug.Assert(_baseValidator.
Text
!= null);
88
(originalText.Trim().Length == 0 && _baseValidator.
Text
.Trim().Length == 0));
UI\MobileControls\Design\CommandDesigner.cs (2)
71
Debug.Assert(null != _command.
Text
);
76
String originalText = _command.
Text
;
UI\MobileControls\Design\LabelDesigner.cs (2)
74
Debug.Assert(null != _label.
Text
);
76
String originalText = _label.
Text
;
UI\MobileControls\Design\LinkDesigner.cs (2)
74
Debug.Assert(null != _link.
Text
);
79
String originalText = _link.
Text
;
UI\MobileControls\Design\MobileControlDesigner.cs (1)
378
originalText = ((TextControl)_mobileControl).
Text
;
UI\MobileControls\Design\PhoneCallDesigner.cs (2)
75
Debug.Assert(_call.
Text
!= null);
80
String originalText = _call.
Text
;
UI\MobileControls\TextBox.cs (1)
57
if (
Text
!= value)