asp:literal (VB.net) : Literal « Asp Control « ASP.Net






asp:literal (VB.net)

<%@ Page Language="vb" %>
<html>
<head>
   <title>Declarative Control Example</title>
   <script runat="server">
      Sub Page_Load()
         Message.Text = "This text set from Page_Load!"
      End Sub
   </script>
</head>
<body>
   <form runat="server">
      <asp:literal id="Message" runat="server"/>
   </form>
</body>
</html>

           
       








Related examples in the same category

1.asp:Literal mode PassThrough (VB.net)
2.asp:Literal: Mode Encode (C#)
3.asp:Literal Mode Transform (C#)