Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<%response.Write(cstr(rsGuestbook("crqty1")*rsGuestbook("UnitPrice1")))%>
Response.write( cstr(Num1*Num2) )
Num1=cint(rsGuestbook("crqty1"))
Num2=cint(rsGuestbook("UnitPrice1"))
Response.write Num1*Num2 ' to multiply
Response.write Num1+Num2 ' to sum
<%
Num1=Cdbl( rsGuestbook("crqty1"))
Num2=CDbl( rsGuestbook("UnitPrice1"))
Response.write(Num1*Num2)
%>