刚刚学习ASP文件操作,就遇到问题!
请问我下面这网页是错在哪里.怎么老是打不开
.<%@ Language=VBScript %>
<html>
<head>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
</head>
<body>
<%
'创建FilsSystemObject
Set fsObject=Server.CreateObject("Scripting.FileSystemObject")
'判断文件1.txt是否存在,如果不存在创建该文件
if fsObject.FileExists("E:\test\1.txt")=False then
Set TxtObject= fsObject.CreateTextFile("E:\test\1.txt",true)
end if
%>
1.txt文件创建完毕!<br>
<a href="CopyFile.asp">【复制文件】</a>
</body>
</html>