ASP生成html的问题。请朋友指点!

王朝知道·作者佚名  2009-06-21
窄屏简体版  字體: |||超大  
 
分類: 電腦/網絡 >> 程序設計 >> 其他編程語言
 
問題描述:

如果没有生成当天的文件夹的时候,出现:

Set htmout = objfso.CreateTextFile(formpath&"\"&makefilename)

这行路径未找到。

如果已经存在这个文件夹的时候出现:

Set htmout = objfso.CreateTextFile(formpath&"\"&makefilename)

这行路径未找到。

我是个新手,正在学习中,请个位朋友帮忙指点一下,谢谢!

<%

function makefilename()

fname = now()

fname = replace(fname,"-","")

fname = replace(fname," ","")

fname = replace(fname,":","")

fname = replace(fname,"PM","")

fname = replace(fname,"AM","")

fname = replace(fname,"上午","")

fname = replace(fname,"下午","")

randomize

ranNum=int(90000*rnd)+10000 '生成随机数

fname = fname&fanNum

makefilename=fname & ".htm"

end function

if request("body")<>"" then

set objfso = Server.Createobject("Scripting.FileSystemobject") '创建一个fso实例

formPath=datepart("yyyy",now())&"_"&datepart("m",now())&"_"&datepart("d",now()) '建立目录名,生成的文件将按存放在此处

htmout = server.mappath(formpath& "/" &makefilename)

if objfso.folderexists(server.mappath(formPath)) then '如果该目录存在

Set htmout = objfso.CreateTextFile(formpath&"\"&makefilename)

else

objfso.createfolder(server.mappath(formPath)) '创建一个文件夹

Set htmout = objfso.CreateTextFile(formpath&"\"&makefilename)

htmout.write "<html><head><title>"

htmout.write request.form("title")

htmout.write "</title></head><body>新闻标题:"

htmout.write request.form("title")

htmout.write "<br>内容(body):"

htmout.write request.form("body")

htmout.write "</body></html>"

htmout.close

set htmout=nothing

set objfso=nothing

end if

end if

%>

<form name="form1" method="post" action="">

<table width="300" border="0" align="center">

<tr>

<td align="right">标题:</td>

<td colspan="2"><input name="title" size=18></td>

</tr>

<tr>

<td align="right">内容:</td>

<td colspan="2"><textarea name="body"></textarea></td>

</tr>

<tr>

<td align="right"> </td>

<td><input type="submit" name="Submit" value="生成"></td>

<td><a href="<%=makefilename%>" target="_blank">查看输出的文件</a></td>

</tr>

</table>

<br>

<br>

<br>

</form>

參考答案:

if objfso.folderexists(server.mappath(formPath)) then '如果该目录存

objfso.createfolder(server.mappath(formPath)) '创建一个文件夹

这两行是对的

Set htmout = objfso.CreateTextFile(formpath&"\"&makefilename)

这行是错的,文件名也要用Server.MapPath来获得物理路径。

小贴士:① 若网友所发内容与教科书相悖,请以教科书为准;② 若网友所发内容与科学常识、官方权威机构相悖,请以后者为准;③ 若网友所发内容不正确或者违背公序良俗,右下举报/纠错。
 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航