| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 7639 人关注过本帖
标题:菜鸟请教:如何写入数据库?
取消只看楼主 加入收藏
sundeben
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2009-6-1
结帖率:87.5%
收藏
 问题点数:0 回复次数:1 
菜鸟请教:如何写入数据库?
下面的代码是文件上传的页面代码,我想把lmxxid_p这个变量值写入数据库,该怎么办?请高手帮忙.(我用向数据集中插入新记录的办法不行.)请说得详细些.谢谢!!
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="file:///D|/ebwz/An-Upload/complex/UpLoad_Class.vbs.asp"-->


<%
dim upload
set upload = new AnUpLoad
upload.Exe = "jpg|bmp|jpeg|gif|png"
upload.MaxSize = 2 * 1024 * 1024 '2M
upload.GetData()
if upload.ErrorID>0 then
    response.Write upload.Description
else
    lmxxid_p=upload.forms("select")
    filename=upload.forms("text1")
    response.Write(lmxxid_p)& "<br />"
        
    response.Write "文件名:" &(filename)& "<br />"
   
    dim file,savpath
    savepath = "rj"
    set file = upload.files("file1")
    if not(file is nothing) then
        if file.saveToFile(savepath,1,true) then
        rjurl=savepath& "/" & file.LocalName

        response.Write(rjurl)& "<br />"
            response.Write "文件'" & file.LocalName & "'上传成功,保存位置'" & server.MapPath(savepath & "/" & file.filename) & "',文件大小" & file.size & "字节"
        else
            response.Write file.Exception
        end if
    end if
end if
set upload = nothing
%>
搜索更多相关主题的帖子: 数据库 
2010-12-08 14:30
sundeben
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2009-6-1
收藏
得分:0 
噢,我插入数据库连接代码再试一下,先谢谢你!
2010-12-08 16:43
快速回复:菜鸟请教:如何写入数据库?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.025535 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved