ASP.net图像上传并使用数据库自​​动生成的ID重命名

发布于 2024-11-04 17:47:09 字数 66 浏览 0 评论 0原文

你能告诉我如何通过 ASP.net Web 表单上传图像吗? 我想上传图像并将其重命名为数据库返回的自动生成的 ID。

Can u tell me how to upload a image through ASP.net web forms.
I want to upload the image and rename it to the autogenerated ID returned by Database.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森林很绿却致人迷途 2024-11-11 17:47:09

我在回答中假设您已成功插入记录并获取插入的 ID:

Int32 RecentGenerateID = 34;//Assign ID that you are getting from the DB

if(FileUpload1.HasFile)
{
FileUpload1.SaveAs(Server.MapPath("~/FolderName/" + RecentGenerateID.ToString() + System.IO.Path.GetExtension(FileUpload1.FileName));
}

I am assuming in my answer, that you were successfully able to insert the record and get the inserted ID:

Int32 RecentGenerateID = 34;//Assign ID that you are getting from the DB

if(FileUpload1.HasFile)
{
FileUpload1.SaveAs(Server.MapPath("~/FolderName/" + RecentGenerateID.ToString() + System.IO.Path.GetExtension(FileUpload1.FileName));
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文