LiteralControl Constructor ()

 

Initializes a new instance of the LiteralControl class that contains a literal string to be rendered on the requested ASP.NET page.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

Public Sub New

The following code example creates a class, CustLiteralControlClass, that extends the LiteralControl class. It creates an instance of the class named myLiteralControlClass1 by using the constructor that does not specify the text of the LiteralControl object. After the object is created, the Text property is used to set the text that it contains.

Dim myLiteralControlClass1 as CustomLiteralControlClass = _
new CustomLiteralControlClass()
myLiteralControlClass1.Text="This Control demonstrates the constructor1"

.NET Framework
Available since 1.1
Return to top
Show: