Mega Code Archive

 
Categories / ASP.Net Tutorial / Response
 

Calculation in Response Write (C#)

<%@ Page Language="C#" %> <script runat="server">    int MyIntA = 8, MyIntB = 7;    void Page_Load(Object Sender, EventArgs e) {       Response.Write(MyIntA * MyIntB);    } </script> <html> <body> </body> </html>