为什么这个asp代码出错??
<% @language=javascript %>
<%
Session.TimeOut=1;
%>
<%
Application.Lock;
var fso=Server.CreateObject("Scripting.FileSystemObject");
var file=fso.OpenTextFile("test.txt",1);
save=file.ReadLine();
Application("count")=save;
Application("count")+=1;
file.close();
file=fso.OpenTextFile("test.txt",2);
file.WriteLine(Application("count"));
file.close();
Application.UnLock;
%>
总来访人数<%=Application("count")%>。
错误代码
服务器对象 错误 'ASP 0177 : 800a0035'
Server.CreateObject 失败
/asp/count1.asp, 行10
00000000