求助ASP几个问题,请高手帮忙,急急急~~~

2024-12-21 23:11:33
推荐回答(1个)
回答1:

【6】 name,value
【7】 open(),execute()
【8】 Web服务器
【9】 POST
【10】 Flush,End
【11】 <% = 变量名 %>
【12】 true
【13】 MapPath,URLEncod
【14】 乘法表
<%
for i=1 to 9
for j=1 to i
if j*i<10 then
response.write j&"*"&i&"="&j*i&" "&" "
else
response.write j&"*"&i&"="&j*i&" "
end if
next
response.Write("
")
for k=i+1 to 9
response.Write(" ")
next
response.Write("
")
next
%>