[求助]看看为啥运行不了!
<%dim the_a,the_b,the_c
dim the_i,the_m,the_n
the_a=request("the_table")
the_b=request("the_tr")
the_c=request("the_td")
for the_i=1 to the_a
response.write"<table border='1'>"
for the_m=1 to the_b
if the_m mod 2=0 then
response.write"<tr bgcolor='#ff0000'>"
else
response.write"<tr>"
end if
response.write"<tr>"
for the_n=1 to the_c
response.write"<td>"
response.write"&nbsp"
response.write"</td>"
next
response.write"</tr>"
next
response.write"</table>"
response.write"<br>"
next
%>