求asp投票系统代码,写入记事本

来源:百度知道 编辑:UC知道 时间:2024/05/15 20:03:43
求asp的投票系统代码,

不知道不连接数据库,只写进记事本能实现吧??
那asp投票系统代码有没有??我也需要..

Function WriteTxtFile(Text,FileName)
path=Server.MapPath(FileName)
Set fso = CreateObject("Scripting.FileSystemObject")
Set f1 = fso.CreateTextFile(path,true)
f1.Write (Text)
f1.Close
End Function

这个是把数据写到记事本里面,Text是要写的内容,FileName是记事本文件名,如:vote.txt