1 type derived from LiteralControl
System.Web (1)
UI\LiteralControl.cs (1)
132
internal sealed class ResourceBasedLiteralControl :
LiteralControl
{
31 instantiations of LiteralControl
System.Web (29)
UI\ControlBuilder.cs (2)
1439
childObj = new
LiteralControl
((string)cur);
1463
childObj = new
LiteralControl
(code);
UI\DesignTimeTemplateParser.cs (1)
110
LiteralControl literalControl = new
LiteralControl
(cur.ToString());
UI\HtmlControls\HtmlContainerControl.cs (2)
85
Controls.Add(new
LiteralControl
(value));
139
Controls.Add(new
LiteralControl
(s));
UI\WebControls\Calendar.cs (1)
1619
LiteralControl dayContent = new
LiteralControl
(dayNumberText);
UI\WebControls\ChangePassword.cs (3)
2981
container.CreateUserLinkSeparator = new
LiteralControl
();
2986
container.HelpPageLinkSeparator = new
LiteralControl
();
2991
container.EditProfileLinkSeparator = new
LiteralControl
();
UI\WebControls\CommandField.cs (5)
602
spaceControl = new
LiteralControl
(" ");
611
spaceControl = new
LiteralControl
(" ");
624
spaceControl = new
LiteralControl
(" ");
632
spaceControl = new
LiteralControl
(" ");
640
spaceControl = new
LiteralControl
(" ");
UI\WebControls\DataGrid.cs (4)
1327
cell.Controls.Add(new
LiteralControl
(" "));
1386
cell.Controls.Add(new
LiteralControl
(" "));
1408
cell.Controls.Add(new
LiteralControl
(" "));
1413
cell.Controls.Add(new
LiteralControl
(" "));
UI\WebControls\EditCommandColumn.cs (1)
195
LiteralControl spaceControl = new
LiteralControl
(" ");
UI\WebControls\HyperLink.cs (1)
236
base.AddParsedSubObject(new
LiteralControl
(currentText));
UI\WebControls\Label.cs (1)
189
base.AddParsedSubObject(new
LiteralControl
(currentText));
UI\WebControls\LinkButton.cs (1)
336
base.AddParsedSubObject(new
LiteralControl
(currentText));
UI\WebControls\login.cs (2)
1844
LiteralControl passwordRecoveryLinkSeparator = new
LiteralControl
();
1852
LiteralControl createUserLinkSeparator = new
LiteralControl
();
UI\WebControls\TableCell.cs (1)
303
base.AddParsedSubObject(new
LiteralControl
(currentText));
UI\WebControls\Wizard.cs (1)
2817
_titleLiteral = new
LiteralControl
();
UI\WebParts\RowToFieldTransformer.cs (1)
146
s.Controls.Add(new
LiteralControl
(" "));
UI\WebParts\RowToParametersTransformer.cs (2)
264
s.Controls.Add(new
LiteralControl
("<br />"));
312
s.Controls.Add(new
LiteralControl
(" "));
System.Web.Extensions (2)
UI\WebControls\NextPreviousPagerField.cs (1)
409
container.Controls.Add(new
LiteralControl
(" "));
UI\WebControls\NumericPagerField.cs (1)
265
container.Controls.Add(new
LiteralControl
(" "));
75 references to LiteralControl
System.Web (59)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (1)
708
newExpr = new CodeObjectCreateExpression(typeof(
LiteralControl
));
UI\Control.cs (2)
3260
((_controls[0] is
LiteralControl
));
3291
/// them. This includes any literal content being parsed as a <see cref='System.Web.UI.
LiteralControl
'/>
UI\DesignTimeTemplateParser.cs (1)
110
LiteralControl
literalControl = new LiteralControl(cur.ToString());
UI\HtmlControls\HtmlContainerControl.cs (1)
72
return((
LiteralControl
) Controls[0]).Text;
UI\HtmlControls\HtmlTextArea.cs (1)
174
if (obj is
LiteralControl
|| obj is DataBoundLiteralControl)
UI\HtmlControls\HtmlTitle.cs (2)
34
if (obj is
LiteralControl
) {
35
_text = ((
LiteralControl
)obj).Text;
UI\MasterPage.cs (2)
200
LiteralControl
literal = control as
LiteralControl
;
UI\TemplateControl.cs (1)
296
protected
LiteralControl
CreateResourceBasedLiteralControl(int offset, int size, bool fAsciiOnly) {
UI\WebControls\Calendar.cs (1)
1619
LiteralControl
dayContent = new LiteralControl(dayNumberText);
UI\WebControls\ChangePassword.cs (9)
2384
LiteralControl
createUserLinkSeparator = container.CreateUserLinkSeparator;
2389
LiteralControl
helpPageLinkSeparator = container.HelpPageLinkSeparator;
2390
LiteralControl
editProfileLinkSeparator = container.EditProfileLinkSeparator;
3185
private
LiteralControl
_createUserLinkSeparator;
3186
private
LiteralControl
_helpPageLinkSeparator;
3187
private
LiteralControl
_editProfileLinkSeparator;
3338
internal
LiteralControl
CreateUserLinkSeparator {
3389
internal
LiteralControl
EditProfileLinkSeparator {
3430
internal
LiteralControl
HelpPageLinkSeparator {
UI\WebControls\CommandField.cs (1)
595
LiteralControl
spaceControl;
UI\WebControls\EditCommandColumn.cs (1)
195
LiteralControl
spaceControl = new LiteralControl(" ");
UI\WebControls\HyperLink.cs (3)
222
if (obj is
LiteralControl
) {
224
Text += ((
LiteralControl
)obj).Text;
227
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\Label.cs (3)
176
if (obj is
LiteralControl
) {
178
Text += ((
LiteralControl
)obj).Text;
181
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\LinkButton.cs (3)
323
if (obj is
LiteralControl
) {
325
Text += ((
LiteralControl
)obj).Text;
328
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\listitem.cs (2)
366
if (obj is
LiteralControl
) {
367
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\Literal.cs (2)
102
if (obj is
LiteralControl
) {
103
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\login.cs (8)
1588
LiteralControl
createUserLinkSeparator = container.CreateUserLinkSeparator;
1593
LiteralControl
helpPageLinkSeparator = container.PasswordRecoveryLinkSeparator;
1844
LiteralControl
passwordRecoveryLinkSeparator = new LiteralControl();
1852
LiteralControl
createUserLinkSeparator = new LiteralControl();
2309
private
LiteralControl
_createUserLinkSeparator;
2317
private
LiteralControl
_passwordRecoveryLinkSeparator;
2348
internal
LiteralControl
CreateUserLinkSeparator {
2452
internal
LiteralControl
PasswordRecoveryLinkSeparator {
UI\WebControls\MultiView.cs (1)
169
else if (!(obj is
LiteralControl
))
UI\WebControls\TableCell.cs (3)
286
if (obj is
LiteralControl
) {
292
Text += ((
LiteralControl
)obj).Text;
295
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\TextBox.cs (2)
547
if (obj is
LiteralControl
) {
548
Text = ((
LiteralControl
)obj).Text;
UI\WebControls\Wizard.cs (1)
2609
private
LiteralControl
_titleLiteral;
UI\WebControls\xml.cs (2)
340
if (obj is
LiteralControl
) {
342
string text = ((
LiteralControl
)obj).Text;
UI\WebParts\CatalogZone.cs (2)
44
LiteralControl
literal = control as
LiteralControl
;
UI\WebParts\DeclarativeCatalogPart.cs (1)
85
if ((webPart == null) && !(control is
LiteralControl
)) {
UI\WebParts\EditorZone.cs (2)
44
LiteralControl
literal = control as
LiteralControl
;
UI\WebParts\WebPartZone.cs (1)
53
if ((part == null) && !(control is
LiteralControl
)) {
System.Web.Mobile (16)
UI\MobileControls\Adapters\ChtmlFormAdapter.cs (1)
69
!(control is
LiteralControl
))
UI\MobileControls\Adapters\HtmlFormAdapter.cs (2)
252
LiteralControl
lc = childControl as
LiteralControl
;
UI\MobileControls\Adapters\WmlFormAdapter.cs (2)
236
LiteralControl
lc = childControl as
LiteralControl
;
UI\MobileControls\Design\MobileControlPersister.cs (5)
810
if (control is
LiteralControl
) {
811
PersistLiteralControl(sw, (
LiteralControl
)control);
856
if (control is
LiteralControl
) {
857
PersistLiteralControl(sw, (
LiteralControl
)control);
978
private static void PersistLiteralControl(TextWriter sw,
LiteralControl
control) {
UI\MobileControls\List.cs (1)
193
if (!(obj is
LiteralControl
))
UI\MobileControls\MobileControl.cs (3)
1022
if (child is
LiteralControl
||
1057
if (child is
LiteralControl
)
1059
text = ((
LiteralControl
)child).Text;
UI\MobileControls\ObjectList.cs (1)
530
if (!(obj is
LiteralControl
))
UI\MobileControls\SelectionList.cs (1)
302
if (!(obj is
LiteralControl
))