0

我已经从在线资源中收集到的一些代码编写了一些代码,以将表单中的一些文本提交到文本文件中,现在我不知道我错过了什么,但文本文件没有任何内容,我猜它可能是可能与文件夹路径有关,但我不确定,只是在寻找一些方向。

我的 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>

希望这对某人有意义,并且您可以为我指明正确的方向,谢谢!

4

2 回答 2

3

您没有将正确的变量写入文件。

f.WriteLine(bug)应该f.WriteLine(idea)

如果您打开“选项显式”,则更容易诊断此类问题。这是向您展示如何执行此操作的页面:http: //msdn.microsoft.com/en-us/library/ms524870 (v=vs.90).aspx

于 2013-10-14T14:46:01.343 回答
1

您的实际内容在 variable 中idea,而不是在bug. bug只是查询字符串的索引。你也可能需要flush你的流。

使用flush关闭文件前的方法,ef.flush()

f.WriteLine(idea)
//your more writing
f.flush()
f.Close

这是msdn链接

http://msdn.microsoft.com/en-us/library/system.io.streamwriter.flush.aspx

于 2013-10-14T14:47:47.523 回答