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

ASP.NETImages and PhotosJavaScript

Avatar of undefined
Last Comment
lenamtl
Avatar of ITsolutionWizard
ITsolutionWizard
Flag of United States of America image

ASKER

any helps?
Avatar of lenamtl
lenamtl
Flag of Canada image

Hi,

this will be handle by your server side code (ASP) not by the Javascript code.
You will also need server side validation.
Avatar of ITsolutionWizard

ASKER

can u show me how to accept files in the backend
ASKER CERTIFIED SOLUTION
Avatar of lenamtl
lenamtl
Flag of Canada image

Blurred text
THIS SOLUTION IS ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
ASP.NET
ASP.NET

The successor to Active Server Pages, ASP.NET websites utilize the .NET framework to produce dynamic, data and content-driven web applications and services. ASP.NET code can be written using any .NET supported language. As of 2009, ASP.NET can also apply the Model-View-Controller (MVC) pattern to web applications

128K
Questions
--
Followers
--
Top Experts
Get a personalized solution from industry experts
Ask the experts
Read over 600 more reviews

TRUSTED BY

IBM logoIntel logoMicrosoft logoUbisoft logoSAP logo
Qualcomm logoCitrix Systems logoWorkday logoErnst & Young logo
High performer badgeUsers love us badge
LinkedIn logoFacebook logoX logoInstagram logoTikTok logoYouTube logo