Output HTML tags in Response.Write, change the tag properties dynamicallys (VB.net) : Write « Response « ASP.NET Tutorial






<%@ Page Language="VB" %>

<script runat="server">
   sub Page_Load(obj as object, e as eventargs)
      dim i as integer
      
      Response.Write("This is an example")
      Response.Write("<HR width=100%\>")
      
      for i = 1 to 5
         Response.Write("<font size=" & i & ">Hi!<br></font>")
      next
   end sub
</script>

<html><body>
   
</body></hhtml>








6.4.Write
6.4.1.Use Response.Write to output message based on HTML tags (VB.net)
6.4.2.Calculation in Response.Write (VB)
6.4.3.Calculation in Response.Write (C#)
6.4.4.Output integer and string in Response.Write
6.4.5.Output HTML tags in Response.Write, change the tag properties dynamicallys (VB.net)
6.4.6.Create Client Side MessageBox
6.4.7.Send text file to client