Please visit our sponsors !
Literal Control
Definition and Usage
The Literal control is used to display text on a page. The text is
programmable.
Note: This control does not let you apply styles to its
content!
Properties
Property |
Description |
id |
A unique id for the control |
runat |
Specifies that the control is a server control. Must
be set to "server" |
Text |
Specifies the text to display |
Example 1
In the following example we declare one Literal
control which displays some static text in an .aspx file:
<html>
<body>
<form runat="server">
<asp:Literal id="Literal1" Text="I love ASP.NET!" runat="server"/>
</form>
</body>
</html>
|
Example 2
In the following example we declare one Literal
control and one Button control in an .aspx file. When the user clicks on the button, the submit subroutine is executed. The
subroutine changes the text of the Literal control:
<script runat="server">
Sub submit(sender As Object, e As EventArgs)
Literal1.Text="I love ASP.NET!"
End Sub
</script>
<html>
<body>
<form runat="server">
<asp:Literal id="Literal1" Text="I love ASP!" runat="server"/>
<br><br>
<asp:Button id="Button1" Text="Change Text" OnClick="submit"
runat="server"/>
</form>
</body>
</html>
|
Jump to: Top of Page
or HOME or
Printer friendly page
Search W3Schools:
What Others Say About Us
Does the world know about us? Check out these places:
Dogpile
Alta Vista
MSN
Google
Excite
Lycos
Yahoo
Ask Jeeves
We Help You For Free. You Can Help Us!
W3Schools is for training only. We do not warrant its correctness or its fitness for use.
The risk of using it remains entirely with the user. While using this site, you agree to have read and accepted our
terms of use and
privacy policy.
Copyright 1999-2002 by Refsnes Data. All Rights Reserved
|