<small id='c9I5b'></small><noframes id='c9I5b'>

    <tfoot id='c9I5b'></tfoot>

    1. <legend id='c9I5b'><style id='c9I5b'><dir id='c9I5b'><q id='c9I5b'></q></dir></style></legend>

    2. <i id='c9I5b'><tr id='c9I5b'><dt id='c9I5b'><q id='c9I5b'><span id='c9I5b'><b id='c9I5b'><form id='c9I5b'><ins id='c9I5b'></ins><ul id='c9I5b'></ul><sub id='c9I5b'></sub></form><legend id='c9I5b'></legend><bdo id='c9I5b'><pre id='c9I5b'><center id='c9I5b'></center></pre></bdo></b><th id='c9I5b'></th></span></q></dt></tr></i><div id='c9I5b'><tfoot id='c9I5b'></tfoot><dl id='c9I5b'><fieldset id='c9I5b'></fieldset></dl></div>

        <bdo id='c9I5b'></bdo><ul id='c9I5b'></ul>
    3. 使用 C#/.NET 将图像上传到服务器并将文件名存储

      时间:2023-06-03
        <tfoot id='ytOEq'></tfoot>

            <tbody id='ytOEq'></tbody>
          1. <i id='ytOEq'><tr id='ytOEq'><dt id='ytOEq'><q id='ytOEq'><span id='ytOEq'><b id='ytOEq'><form id='ytOEq'><ins id='ytOEq'></ins><ul id='ytOEq'></ul><sub id='ytOEq'></sub></form><legend id='ytOEq'></legend><bdo id='ytOEq'><pre id='ytOEq'><center id='ytOEq'></center></pre></bdo></b><th id='ytOEq'></th></span></q></dt></tr></i><div id='ytOEq'><tfoot id='ytOEq'></tfoot><dl id='ytOEq'><fieldset id='ytOEq'></fieldset></dl></div>

            <legend id='ytOEq'><style id='ytOEq'><dir id='ytOEq'><q id='ytOEq'></q></dir></style></legend>
              <bdo id='ytOEq'></bdo><ul id='ytOEq'></ul>

                <small id='ytOEq'></small><noframes id='ytOEq'>

              1. 本文介绍了使用 C#/.NET 将图像上传到服务器并将文件名存储在数据库中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我目前正在使用以下代码段将数据插入到我的数据库中的表中.它工作得很好.但是,我想开始添加文件名数据,但不知道如何继续.

                I'm currently using the following snippet to insert data into a table in my database. It works great. But, I want to start adding filename data and not sure how to proceed.

                我有以下几点:

                // Create command 
                comm = new SqlCommand(
                  "INSERT INTO Entries (Title, Description) " +
                  "VALUES (@Title, @Description)", conn);
                
                // Add command parameters
                comm.Parameters.Add("@Description", System.Data.SqlDbType.Text);
                comm.Parameters["@Description"].Value = descriptionTextBox.Text;
                comm.Parameters.Add("@Title", System.Data.SqlDbType.NVarChar, 50);
                comm.Parameters["@Title"].Value = titleTextBox.Text;
                

                我还有一个文件上传选项.但是,我不知道如何使用它来执行以下操作:

                I also have a File Upload option. But, I don't know how to use this to do the following:

                • 将文件移动到我的 images 目录和
                • filename 值存储在我的表中.
                • move the file to my images directory and
                • store the filename value in my table.

                我已将正确的 enctype 添加到我的表单中,但现在有点丢失.

                I have added the correct enctype to my form but now a little lost.

                有人能解释一下最好的方法吗?

                Can someone explain the best way to do this?

                非常感谢您对此提供的任何帮助.

                Many thanks for any help with this.

                推荐答案

                要将文件存储在 images 文件夹中,应该是:

                To store the file in an images folder, it should be:

                FileUpload1.SaveAs(Server.MapPath("~/Images/" + FileUpload1.FileName));
                

                然后在文件名中添加命令参数

                and then add the command parameters in the fileName

                comm.Parameters["@FileName"].Value = FileUpload1.FileName;
                

                注意:您的数据库表中必须有 FileName 字段.

                Note: you must have the FileName field in your DB table.

                这篇关于使用 C#/.NET 将图像上传到服务器并将文件名存储在数据库中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:以编程方式设置要在网页中上传的文件名 下一篇:是否有可以在 C# 中使用的类似 jQuery 的 CSS/HTML 选

                相关文章

                最新文章

                  1. <i id='7WjXz'><tr id='7WjXz'><dt id='7WjXz'><q id='7WjXz'><span id='7WjXz'><b id='7WjXz'><form id='7WjXz'><ins id='7WjXz'></ins><ul id='7WjXz'></ul><sub id='7WjXz'></sub></form><legend id='7WjXz'></legend><bdo id='7WjXz'><pre id='7WjXz'><center id='7WjXz'></center></pre></bdo></b><th id='7WjXz'></th></span></q></dt></tr></i><div id='7WjXz'><tfoot id='7WjXz'></tfoot><dl id='7WjXz'><fieldset id='7WjXz'></fieldset></dl></div>

                  2. <tfoot id='7WjXz'></tfoot>
                      <bdo id='7WjXz'></bdo><ul id='7WjXz'></ul>
                  3. <small id='7WjXz'></small><noframes id='7WjXz'>

                  4. <legend id='7WjXz'><style id='7WjXz'><dir id='7WjXz'><q id='7WjXz'></q></dir></style></legend>