ASP GetTempName() - FileSystemObject This the tutorial/example asp script how to Get temp name.
ShotDev Focus:
- ASP & Get temp name.
Example
asp_filesystemobject_gettempname.asp
<% Option Explicit %>
<html>
<head>
<title>ShotDev.Com Tutorial</title>
</head>
<body>
<%
Dim objFSO,strTemp
Set objFSO = Server.CreateObject("Scripting.FileSystemObject")
strTemp = objFSO.GetTempName()
Response.write("Temp Name = " & strTemp)
Set objFSO = Nothing
%>
</body>
</html>
Create a asp file and save to path root-path/myasp/
Run
http://localhost/myasp/asp_filesystemobject_gettempname.asp
Screenshot


