日期:2010-11-23 浏览次数:20911 次
变量用于存储信息。
假如在子程序之外声明变量,那么这个变量可被ASP文件中的任何脚本改变。假如在子程序中声明变量,那么当子程序每次执行时,它才会被创建和撤销
<html><body><%dim namename="Donald Duck"response.write("My name is: " & name)%></body></html>
<html><body><%Dim famname(5),ifamname(0) = "Jan Egil"famname(1) = "Tove"famname(2) = "Hege"famname(3) = "Stale"famname(4) = "Kai Jim"famname(5) = "Borge"For i = 0 to 5 response.write(famname(i) & "<br />")Next%></body></html>
<html><body><%dim i for i=1 to 6 response.write("<h" & i & ">Header " & i & "</h" & i & ">")next%></body></html>
<html><body><%dim hh=hour(now())response.write("<p>" & now())response.write(" (Norwegian Time) </p>")If h<12 then response.write("Good Morning!")else response.write("Good day!")end if%></body></html>
<%
var d=new Date()
var h=d.getHours()
Response.Write("<p>")
Response.Write(d + " (Norwegian Time)")
Response.Write("</p>")
if (h<12)
{
Response.Write("Good Morning!")
}
else
{
Response.Write("Good day!")
}
%>
</body>
</html>
在子程序外声明的便利可被ASP文件中的任何脚本访问和修改。
在子程序中声明的变量只有当子程序每次执行时才会被创建和撤销。子程序外的脚本无法访问和修改该变量。
如需声明用于超过一个ASP文件使用的变量,请将变量声明为session变量或者application变量。
Session变量变量用于存储单一用户的信息,并且对一个application中的所有页面均有效。存储于session中的典型数据是名称、id或参数。
Application变量同样对一个application中的所有页面均有效。Application变量用于存储一个特定的application中所有用户的信息。