The Times Tables

Calculations done with Active Server Pages!

<% For row=0 to 10 Response.Write("") For col=0 to 10 If (col=0) And (row=0) Then Response.Write("") ElseIf (col<>0) And (row=0) Then Response.Write("") ElseIf (col=0) And (row<>0) Then Response.Write("") Else Response.Write("") End If Next Response.Write("") Next %>
 " & col & "" & row & "" & (row*col) & "