gpt4 book ai didi

c# - 在 asp.net 中使用 dropzone.js

转载 作者:IT王子 更新时间:2023-10-29 04:47:35 25 4
gpt4 key购买 nike

这几天我一直在尝试通过拖放界面实现多文件上传。我搜索了很多,最后找到了我的确切要求 http://www.dropzonejs.com/

我在上面的网站上尝试了相同的步骤。但是,我无法在我的 aspx 页面中实现此 dropzone 功能。

最佳答案

假设您使用的是 Web 窗体,您需要实现一个页面来读取发布的文件数据并将其保存到文件中。

示例.ASPX

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Mvc4Application_Basic.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="https://raw.github.com/enyo/dropzone/master/downloads/dropzone.js"></script>
<link href="http://www.dropzonejs.com/css/general.css?v=7" rel="stylesheet" />
</head>
<body>
<form id="frmMain" runat="server" class="dropzone">
<div>
<div class="fallback">
<input name="file" type="file" multiple />
</div>
</div>
</form>
</body>
</html>

示例代码隐藏

    public partial class WebForm1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
foreach (string s in Request.Files)
{
HttpPostedFile file = Request.Files[s];

int fileSizeInBytes = file.ContentLength;
string fileName = Request.Headers["X-File-Name"];
string fileExtension = "";

if (!string.IsNullOrEmpty(fileName))
fileExtension = Path.GetExtension(fileName);

// IMPORTANT! Make sure to validate uploaded file contents, size, etc. to prevent scripts being uploaded into your web app directory
string savedFileName = Path.Combine(@"C:\Temp\", Guid.NewGuid().ToString() + fileExtension);
file.SaveAs(savedFileName);
}
}
}

如果您使用的是 MVC,请参阅此 https://stackoverflow.com/a/15670033/2288997

关于c# - 在 asp.net 中使用 dropzone.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16050965/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com