指引网

当前位置: 主页 > 编程开发 > ASP >

asp入门:asp如何保存数据

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:45
[摘要] 指引教程为您提供asp入门:asp如何保存数据等资源,欢迎您收藏本站,我们将为您提供最新的asp入门:asp如何保存数据资源
asp入门:asp如何保存数据,我们会用到request来取得由post提交过来的数据进行保存,到数据库哦.下面我们就来看看实例教程吧.
<script>ec(2);</script>

asp入门:asp如何保存数据,我们会用到request来取得由post提交过来的数据进行保存,到数据库哦.下面我们就来看看实例教程吧.

 先来看看提交的页面:

<FORM ACTION="saveinfo.asp" METHOD=post>
<!-- Your fields here -->

<INPUT TYPE=submit value="Submit">
</FORM>

下面看看接收数据并保存的页面.

 <%
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<BR>
I will contact you very soon.

------分隔线----------------------------