What is missing in the following code? the example are from "Sams Teach
yourself ASP.NET in 21 days" (kode 3.8) Anyone who knows about a correction
list or other resources for this book?
I would be greatfull for any help
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="iso-8859-1"
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<script runat="server">
sub Page_Load(obj as object, e as eventargs)
MultiplyNumbers(8,9)
MultiplyNumbers(4,12)
MultiplyNumbers(348,23)
end sub
sub MultiplyNumbers(intA as integer, intB as integer)
Response.Write(intA * intB & "<br>")
end sub
</script>
<html>
<head>
<title>Untitled Document</title>
</head>
<body>
</body>
</html>