文件何時被創建
代碼:
<!DOCTYPE html><html>
<body>
<%
dim fs, f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile(Server.MapPath("testread.txt"))
Response.Write("The file testread.txt was created on: " & f.DateCreated)
set f=nothing
set fs=nothing
%>
</body>
</html>
結果:
The file testread.txt was created on: 5/14/2012 9:46:44 AM
相關文章
- ASP.NET MVC 簡介
- ASP.NET MVC 頁面和布局
- ASP.NET 數據綁定
- ASP.NET XML 數據綁定
- ASP.NET DropDownList 控件
- ASP.NET BulletedList 控件
- HTML Image
- HTML InputImage
- ASP.NET HTML 控件 Table
- VB 實例 For Each 循環
- VB 實例 If 條件
- htmlgeneric
- ASP.NET BulletedList FirstBulletNumber 屬性
- ASP.NET Table GridLines 屬性
- ASP.NET TableCell HorizontalAlign 屬性
- ASP.NET TableRow VerticalAlign 屬性
- Web 控件標準屬性
- ASP.NET ClientID 屬性
- ASP.NET Visible 屬性
- 從字符串中返回指定數目的字符