我似乎無法找到代碼中的錯誤。它旨在從HTML表單中輸出從用戶處獲取的變量的時間表。我得到了500編程錯誤。無法看到我的經典ASP代碼有什麼問題
<html>
<head>
<title>My Times Tables</title>
</head>
<body>
<h1>Times Table: </h1>
<%
isValid = True
mult = request.form("multiple")
if not IsNumeric(mult) then
isValid = False
response.write("Not a number. Please try again...")
end if
if mult > 12 And mult < 1 then
isValid = False
response.write("Out of range. Please try again...")
end if
if isValid
%>
<table style="width:75%">
<%
For i = 1 to 12
%>
<tr>
<td><%= i %></td>
<td><%= mult %></td>
<th><%= (i * mult) %></th>
</tr>
<%
Next
end if
%>
</body>
</html>
爲了看到錯誤而不是一個普通的HTTP 500隨訪[A:不能看到傳統的ASP網站的錯誤(http://stackoverflow.com/a/11866550/692942)。 – Lankymart
謝謝,我會檢查出 –