程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> ASP編程 >> 關於ASP編程 >> ASP實例教程:Server對象

ASP實例教程:Server對象

編輯:關於ASP編程

Server 對象

此文件最後被修改的時間是?

探測文件的最後更新時間。

本示例代碼如下:

<html>
<body>
<%
Set fs = Server.CreateObject("Scripting.FileSystemObject")
Set rs = fs.GetFile(Server.MapPath("/example/aspe/demo_aspe_lastmodified.asp"))
modified = rs.DateLastModified
%>
本文件的最後修改時間是:<%response.write(modified)
Set rs = Nothing
Set fs = Nothing
%>
</body>
</html>

本實例運行結果如下:

本文件的最後修改時間是:2009-2-21 20:42:29

打開並讀取某個文本文件

本例會打開文件"Textfile.txt"以供讀取。

看到本信息說明該文是通過網頁教學(www.webjx.com)整理發布的,請不要刪掉!

本示例代碼如下:

<html>
<body>
<%
Set FS = Server.CreateObject("Scripting.FileSystemObject")
Set RS = FS.OpenTextFile(Server.MapPath("/example/aspe") & "\textfile.txt",1)
While not rs.AtEndOfStream
      Response.Write RS.ReadLine
      Response.Write("<br />")
Wend
%>
<p>
<a href="/example/aspe/textfile.txt">查看此文本文件</a>
</p>
</body>
</html>

本實例運行結果如下:

Hello World line 1
Hello World line 2
Hello World line 3
查看此文本文件

此文本文件內容是:

Hello World line 1
Hello World line 2
Hello World line 3

自制的點擊計數器

本例可從某文件中讀取一個數字,並在此數字上累加1,然後將此數寫回這個文件。

本文由網頁教學網(www.webjx.com)發布!轉載和采集的話請不要去掉!謝謝。

本示例代碼如下:

<%
Set FS=Server.CreateObject("Scripting.FileSystemObject")
Set RS=FS.OpenTextFile(Server.MapPath("/example/aspe/counter.txt"), 1, False)
fcount=RS.ReadLine
RS.Close
fcount=fcount+1
'This code is disabled due to the write access security on our server:
'Set RS=FS.OpenTextFile(Server.MapPath("counter.txt"), 2, False)
'RS.Write fcount
'RS.Close
Set RS=Nothing
Set FS=Nothing
%>
<html>
<body>
<p>
本頁已被訪問了 <%=fcount%>  次。
</p>
</body>
</html>

本實例運行結果如下:

本頁已被訪問了 12 次。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved