如下爲引用內容: <% for 變量=1 to N (總量)step M (步長) 重複執行的語句 next %> |
如下爲引用內容:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title> for ... next 語句的用法 </title> </head> <body> <% for i=1 to 10 step 2 response.Write i&", "&"hello world!<br/>" next %> </body> </html> |