如下为引用内容: <%@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> 实例演示流程控制语句中的条件语句 </title> </head> <body> <% dim a,b a=100 b=98 fx=a+b %> <% if fx>180 then response.write "成绩优秀" else response.write "继续努力" end if %> </body> </html> |
如下为引用内容: <%@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> 实例演示流程控制语句中的循环语句 </title> </head> <body> <% for a=1 to 10 response.write "好好学习<br/>" next %> </body> </html> |