uploadify如何将文件名保存到数据库?求后台代码

WBOY
Release: 2016-06-23 14:39:33
Original
721 people have browsed it

uploadify选择多文件(图片)上传,我的想法是多少个文件就在表里的增加几条记录,
(表名:photo 属性名:photoid,photoname),但是每次保存只能在数据库中增加一条记录(photoname只保存最后一个文件的文件名)
求高手帮助啊,谢谢
求详细些的代码


回复讨论(解决方案)

有API的,他上传完每个文件后 将文件名赋值到文本框中就行了。

代码贴出来...可循环insert每个文件的信息

代码贴出来...可循环insert每个文件的信息
string pname = Context.Session["pname"].ToString();//此处是从ashx获取文件名
        string ptime = DateTime.Now.ToString();
        string sql = "insert into uphoto (ptime,pname)values('" + ptime + "','" +pname )";
        int i;
        try
        {
            i = db.Command(sql);//此处是定义的CS类,进行数据库操作的
            if (i > 0)
            {
                Response.Write(" <script>alert('上传成功!');window.window.location.href='photoadd.aspx';</script>");
            }
        }
        catch (Exception ex)
        {
            Response.Write(ex.Message);
        }
    }
}

你好,谢谢,请问如何实现循环insert

有API的,他上传完每个文件后 将文件名赋值到文本框中就行了。
你好,谢谢,可以详细一点吗?不知道API如何使用,可否附代码?

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template