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
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