12 references to DataBoundLiteralControl
System.Web (5)
UI\ControlBuilder.cs (1)
1386
dataBoundBuilder.Init(Parser, this, typeof(
DataBoundLiteralControl
), null, null, null);
UI\HtmlControls\HtmlContainerControl.cs (2)
73
else if (HasControls() && (Controls.Count == 1) && Controls[0] is
DataBoundLiteralControl
)
74
return ((
DataBoundLiteralControl
) Controls[0]).Text;
UI\HtmlControls\HtmlTextArea.cs (1)
174
if (obj is LiteralControl || obj is
DataBoundLiteralControl
)
UI\WebControls\listitem.cs (1)
370
if (obj is
DataBoundLiteralControl
) {
System.Web.Mobile (7)
UI\MobileControls\Adapters\HtmlFormAdapter.cs (2)
259
DataBoundLiteralControl
dlc = childControl as
DataBoundLiteralControl
;
UI\MobileControls\Adapters\WmlFormAdapter.cs (2)
243
DataBoundLiteralControl
dlc = childControl as
DataBoundLiteralControl
;
UI\MobileControls\MobileControl.cs (3)
1023
child is
DataBoundLiteralControl
||
1070
else if (child is
DataBoundLiteralControl
)
1072
text = ((
DataBoundLiteralControl
)child).Text;