网站后台管理登陆
<%call log_chk()%>
<%'---------------------------------删除文件
If Request("act")="del" Then
dname=request("dname")
Fpath=request("Fpath")
dname=Server.MapPath("../../"&Fpath&"/"&dname)
Set fs = Server.CreateObject("Scripting.FileSystemObject")
fs.deleteFile(dname)
response.write""
response.end
Set fs = Nothing
End if%>
后台管理:>> 上传文件管理
<%
Function ShowFileInfo(filespec)
Dim fso,f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.GetFile(filespec)
ShowFileInfo = "Created:"& f.DateCreated
End Function
%>
<%
Function ShowFileInfo(filespec)
Dim fso,f
Set fso= CreateObject("Scripting.FileSystemObject")
Set f= fso.GetFile(filespec)
ShowFileInfo= "创建于:"&f.DateCreated
End Function
%>