Server是 ASP 对象,不能放在脚本中。
正在做毕设,想通过触发按钮事件,写入本地磁盘的txt文件。但触发后无响应(本地磁盘没有生成相应txt)。请问是什么问题?
代码如下:
<html>
<head>
<title>测试按钮事件</title>
</head>
<body>
<input type="button" name="button1" value="up">
<script for="button1" event="onclick" language="vbscript">
Set MyFileObject=Server.CreateObject("Scripting.FileSystemObject")
Set MyTextFile=MyFileObject.CreateTextFile("c:\test.txt")
MyTextFile.WriteLine("up")
MytextFile.Close
</script>
</body>
</html>
把上面红色代码换成下面代码就可以了
正在做毕设,想通过触发按钮事件,写入本地磁盘的txt文件。但触发后无响应(本地磁盘没有生成相应txt)。请问是什么问题?
代码如下:
<html>
<head>
<title>测试按钮事件</title>
</head>
<body>
<input type="button" name="button1" value="up">
<script for="button1" event="onclick" language="
javascript">
var MyFileObject=new ActiveXObject("Scripting.FileSystemObject")
var MyTextFile=MyFileObject.CreateTextFile("c:\test.txt")
MyTextFile.WriteLine("up")
MytextFile.Close
</script>
</body>
</html>
[
本帖最后由 zzy_420 于 2010-4-11 21:58 编辑 ]