最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
asp入门:asp如何保存数据
时间:2022-07-02 22:38:20 编辑:袖梨 来源:一聚教程网
asp入门:asp如何保存数据,我们会用到request来取得由post提交过来的数据进行保存,到数据库哦.下面我们就来看看实例教程吧.
先来看看提交的页面:
下面看看接收数据并保存的页面.
<%
Set fs = CreateObject("Scripting.FileSystemObject")
Folderpath=server.mappath("") & "/cgi-bin/messages143718"
Wcounter=Folderpath &"/counter.txt"
Set fs = CreateObject("Scripting.FileSystemObject")
if fs.FolderExists(Folderpath) then
Set a = fs.OpenTextFile(Wcounter)
hits = Clng(a.ReadLine)
hits = hits + 1
a.close
else
Set a = fs.CreateFolder(Folderpath)
hits=1
end if
Set a = fs.CreateTextFile(Wcounter,True)
a.WriteLine(hits)
a.Close
Set fs=nothing
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.CreateTextFile(Folderpath & "" & hits & ".txt")
For Each x In Request.Form
a.WriteLine(x &": " & Request.Form(x))
Next
a.Close
Set a=nothing
Set fs=nothing
%>
Thanks for providing the requested information
I will contact you very soon.
相关文章
- 原神玛薇卡暴力火伤队怎么玩 玛薇卡配队大全一览 07-12
- 星露谷物语星之果实怎么收集-星之果实全收集攻略 07-12
- 剑星艾米尔商店位置在哪里 位置分布一览 07-12
- 送礼物发朋友圈的文案 07-12
- 幻兽帕鲁霹雳犬在哪抓 帕鲁霹雳犬抓捕位置介绍 07-12
- 突破倒计时:顶尖交易员揭示以太坊的牛市布局 07-12