我已经从在线资源中收集到的一些代码编写了一些代码,以将表单中的一些文本提交到文本文件中,现在我不知道我错过了什么,但文本文件没有任何内容,我猜它可能是可能与文件夹路径有关,但我不确定,只是在寻找一些方向。
我的 ASP 表单代码是:
<form method="get" action="simpleform.asp">
<br/>
<i>Please include your initials and date with the bug report</i>
<br/>
<br/>
<b>Bug</b> <input type="text" name="bug">
<input type="submit" value="Submit Bug Report">
</form>
<br/>
将文本提交到文件的 ASP 代码是这样的:
<html>
<body>
Thanks for the report! To report another bug <a href="BugReportPage.asp">click here</a>.
<%
Dim idea
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.OpenTextFile("G:\General\EM_Wiki\WikiBug\bugreport.txt",8,true)
idea= Request.QueryString("bug")
f.WriteLine(bug)
f.Close
set f=nothing
set fs=nothing
%>
</body>
</html>
希望这对某人有意义,并且您可以为我指明正确的方向,谢谢!