1

我有一个 ASP.NET (4.5) 网站。

下面的这个按钮命令将employeename、employeelastname、employeephoto 插入到images 文件夹,将imagepath 插入到db。

我希望图像路径自动成为唯一名称+扩展名;

string filepath = //"uniquename" + ext;

因此,EmployeeID 是唯一的,因此不会出现混淆或重复的照片。

我怎样才能做到这一点?

谢谢你。

protected void Button1_Click(object sender, EventArgs e) //Insert
    {

    if (FileUploadControl.HasFile)
            {
                string ext = Path.GetExtension(FileUploadControl.FileName);

                if (ext == ".jpg" || ext == ".png" || ext == ".jpeg" || ext == ".gif")
                {
                    try
                    {
                        cnn.Open();


                        SqlCommand cmd = new SqlCommand("INSERT INTO Employees (EmployeeFirstName, EmployeeLastName, EmployeePhotoPath) VALUES (@item1,@item2,@img)", cnn);
                        cmd.Parameters.AddWithValue("@item1", TextBox1.Text);
                        cmd.Parameters.AddWithValue("@item2", TextBox2.Text);

                        string filepath = //"uniquename" + ext;
                        FileUploadControl.SaveAs(Server.MapPath("Images/") + filepath);
                        cmd.Parameters.AddWithValue("@img", filepath);

                        cmd.ExecuteNonQuery();

                        cnn.Close();
                        Label3.Text = "successfully inserted";
                    }

                    catch (Exception ex)
                    {
                        Label3.Text = ex.Message;
                    }

                    temizle();
                }

                else
                {
                    Label3.Text = "selected file is not a photo";
                }
            }
            else
            {
                Label3.Text = "please upload employee photo";
            }
        }
   }
4

3 回答 3

2

如果您只需要文件名是唯一的并且您不一定关心它们的名称,那么一个简单的解决方案是使用文件名的 guid:

string filepath = Guid.NewGuid().ToString() + ext;

将员工姓名添加到文件名中可能也是一个好主意,这样只需查看文件名就可以更容易地识别文件:

string filepath = string.Format("{0}-{1}-{2}{3}",
                                TextBox1.Text,
                                TextBox2.Text,
                                Guid.NewGuid().ToString(),
                                ext);
于 2013-10-02T21:01:26.557 回答
1

另一种选择,如果你不想做INSERTandSCOPE_IDENTITY路线是使用GUID

尝试构建您自己的唯一 ID(例如通过名称 + 时间的组合或您能想到的任何其他方式)比 GUID 更有可能产生重复。

string filepath = Guid.NewGuid().ToString() + ext;
于 2013-10-02T21:01:14.557 回答
1

我将开始创建一个存储过程来委派工作以在数据库中添加记录以确定文件的名称。存储过程返回新 ID,您可以将其作为标量值捕获

CREATE PROCEDURE EmployeeAdd
(
   @firstN nvarchar(50),
   @lastN nvarchar(50),
   @ext nvarchar(10)
)
as
BEGIN
     DECLARE @newID int
     INSERT INTO Employees (EmployeeFirstName, EmployeeLastName, EmployeePhotoPath) 
                 VALUES (@firstN, @lastN, '')
     SET @newID = SCOPE_IDENTITY()
     DECLARE @newPath nvarchar(30)
     SET @newPath = CONVERT(nvarchar(10), @newID) + '.' + @ext
     UPDATE Employees SET EmployeePhotoPath = @newPath WHERE EmployeeID = @newID
     SELECT @newID
END

......    
SqlCommand cmd = new SqlCommand("EmployeeAdd", cnn);
cmd.Parameters.AddWithValue("@firstN", TextBox1.Text);
cmd.Parameters.AddWithValue("@lastN", TextBox2.Text);
cmd.Parameters.AddWithValue("@ext", ext);
int result = Convert.ToInt32(cmd.ExecuteScalar());
FileUploadControl.SaveAs(Server.MapPath("Images/") + string.Format("{0}.{1}", result, ext));
....

刚才还不能全部测试,但我觉得思路很清楚。

于 2013-10-02T21:06:33.440 回答