6 implementations of Text
System.Web (6)
UI\DataBoundLiteralControl.cs (1)
182
string ITextControl.
Text
{
UI\LiteralControl.cs (1)
59
public virtual string
Text
{
UI\WebControls\Label.cs (1)
131
public virtual string
Text
{
UI\WebControls\ListControl.cs (1)
425
public virtual string
Text
{
UI\WebControls\Literal.cs (1)
86
public string
Text
{
UI\WebControls\TextBox.cs (1)
304
public virtual string
Text
{
23 writes to Text
System.Web (23)
UI\WebControls\ChangePassword.cs (2)
2162
failureTextLabel.
Text
= failureText;
2577
userNameTextBox.
Text
= UserNameInternal;
UI\WebControls\CreateUserWizard.cs (10)
1769
userNameTextBox.
Text
= UserNameInternal;
1776
emailTextBox.
Text
= EmailInternal;
1783
questionTextBox.
Text
= QuestionInternal;
1790
answerTextBox.
Text
= AnswerInternal;
1834
((ITextControl)emailTextBox).
Text
= Email;
1864
((ITextControl)questionTextBox).
Text
= Question;
1869
((ITextControl)answerTextBox).
Text
= Answer;
2008
((ITextControl)errorMessageLabel).
Text
= _unknownErrorMessage;
2744
errorMessageLabel.
Text
= _unknownErrorMessage;
2863
((ITextControl)errorMessageLabel).
Text
= _unknownErrorMessage;
UI\WebControls\login.cs (5)
1108
failureTextLabel.
Text
= FailureText;
1436
failureTextLabel.
Text
= failureText;
1481
((ITextControl)userNameLabel).
Text
= userNameLabelText;
1513
((ITextControl)passwordLabel).
Text
= passwordLabelText;
1704
userNameTextBox.
Text
= userName;
UI\WebControls\PasswordRecovery.cs (6)
1709
failureTextLabel.
Text
= failureText;
1719
failureTextLabel.
Text
= failureText;
1748
userName.
Text
= HttpUtility.HtmlEncode(UserNameInternal);
1754
question.
Text
= HttpUtility.HtmlEncode(Question);
1759
answerTextBox.
Text
= String.Empty;
2178
userNameTextBox.
Text
= userName;
33 references to Text
System.Web (33)
UI\WebControls\ChangePassword.cs (8)
685
return passwordTextBox.
Text
;
1015
return passwordTextBox.
Text
;
1499
return userTextBox.
Text
;
1737
_confirmNewPassword = ((ITextControl) source).
Text
;
1902
_newPassword = ((ITextControl) source).
Text
;
2056
_password = ((ITextControl) source).
Text
;
2489
if (((ITextControl)failureTextLabel).
Text
.Length > 0) {
2655
string userName = ((ITextControl) source).
Text
;
UI\WebControls\CreateUserWizard.cs (11)
170
answer = answerTextBox.
Text
;
769
return emailTextBox.
Text
;
1218
return passwordTextBox.
Text
;
1375
question = questionTextBox.
Text
;
1562
return userNameTextBox.
Text
;
1758
Answer = ((ITextControl)source).
Text
;
2188
_confirmPassword = ((ITextControl)source).
Text
;
2413
Email = ((ITextControl)source).
Text
;
2798
_password = ((ITextControl)source).
Text
;
2803
Question = ((ITextControl)source).
Text
;
2981
UserName = ((ITextControl)source).
Text
;
UI\WebControls\login.cs (7)
618
if (passwordTextBox != null && passwordTextBox.
Text
!= null) {
619
return passwordTextBox.
Text
;
920
if (userNameTextBox != null && userNameTextBox.
Text
!= null) {
921
return userNameTextBox.
Text
;
1334
_password = ((ITextControl) source).
Text
;
1670
if (((ITextControl)failureTextLabel).
Text
.Length > 0) {
1756
UserName = ((ITextControl) source).
Text
;
UI\WebControls\PasswordRecovery.cs (7)
112
if (answerTextBox != null && answerTextBox.
Text
!= null) {
113
return answerTextBox.
Text
;
865
return textbox.
Text
;
1131
_answer = ((ITextControl)source).
Text
;
1957
if (((ITextControl)failureTextLabel).
Text
.Length > 0) {
2155
if (((ITextControl)failureTextLabel).
Text
.Length > 0) {
2240
UserName = ((ITextControl)source).
Text
;