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