Mega Code Archive

 
Categories / ASP.Net Tutorial / Response
 

Calculation in Response Write (VB)

<%@ Page Language="VB" %> <script runat="server">    dim MyIntA as integer = 8, MyIntB as Integer = 7    sub Page_Load(Sender as object, e as eventargs)       Response.Write(MyIntA * MyIntB)    end sub </script> <html> <body> </body> </html>