web 2.0

ASP.NET(vb.net) & Literal - asp:Literal

ASP.NET(vb.net) & Literal - asp:Literal - asp:Literal : Displays static contents on the page and allows you to manipulate it programmatically.

ShotDev Focus:
- ASP.NET(vb.net) & Literal - asp:Literal

ASP.NET(vb.net) & Literal - asp:Literal

Tag Control :

<asp:Literal id="Literal1"
Text="Text"
runat="server"/>

Example

Literal.aspx

<%@ Page Language="VB" %>
<script runat="server">

Sub Page_Load(sender As Object,e As EventArgs)
Me.Literal1.Text = "ShotDev.Com"
End Sub

</script>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<form runat="server">
<asp:Literal id="Literal1" runat="server"></asp:Literal>
</form>
</body>
</html>

Screenshot

ASP.NET(vb.net) & Literal - asp:Literal
.
.
.
Download this script.
Download

1 Star2 Stars3 Stars4 Stars5 Stars6 Stars7 Stars8 Stars9 Stars10 Stars (No Ratings Yet)
Loading ... Loading ...

Leave a Reply

You must be logged in to post a comment.