Link to home
Create AccountLog in
Avatar of ITsolutionWizard
ITsolutionWizardFlag for United States of America

asked on

dropzone aspx web form

Using aspx web form with drop zone.
Let's say I want to upload the photos to c:\Photo\
How it works with the following codes in JS?


<%@ Page Language="C#" AutoEventWireup="true" CodeFile="attachfile.aspx.cs" Inherits="services_prostandards_attachfile" %>
 <!DOCTYPE html>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
        <link href="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.5.1/dropzone.css" rel="stylesheet" type="text/css" />
        <script src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.5.1/dropzone.js" type="text/javascript"></script>
    </head>
    <body>
        <form id="frmMain" runat="server">
              <script type="text/javascript">
                  Dropzone.options.myAwesomeDropzone =
                      {
                    paramName: "file", // The name that will be used to transfer the file
                    maxFilesize: 2, // MB
                    url: "/user/tasks/photoupload.aspx?tid=<%=Request.QueryString["tid"]%>"
                    };
</script>
<div id="my-awesome-dropzone" class="dropzone">
    <div class="fallback">
        <input name="file" type="file" multiple="multiple" runat="server"/>
        <input name="btnUpload" type="submit" /><br /><br />
        <asp:Label id="lblFallbackMessage" runat="server" />
    </div>
</div>
</form>
</body>
</html>

Open in new window

Avatar of ITsolutionWizard
ITsolutionWizard
Flag of United States of America image

ASKER

any helps?
Avatar of lenamtl
Hi,

this will be handle by your server side code (ASP) not by the Javascript code.
You will also need server side validation.
can u show me how to accept files in the backend
ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer