View Source
Go Back to /jang/books/asp/example/application/pagehit02.asp
<%@language=JScript%>
<%title="使用 Application 物件的計數網頁的精簡範例"%>
<!--#include file="../head.inc"-->
<hr>

<%  if (Application("Counter")==null) // 若 Application("Counter") 不存在,則設定其為 0
      Application("Counter") = 0; %>

<h3 align=center>您是第 <font color=red><%=++Application("Counter")%></font> 位貴賓!</h3>

<hr>
<!--#include file="../foot.inc"-->