"Cors cross-domain" H5 js cross-domain upload file, C # server-side receive

Source: Internet
Author: User

H5 Native JS file upload, with progress.

JS Code:

<! DOCTYPE html>

C # section

public void ProcessRequest (HttpContext context)        {            httpfilecollection files =context. Request.Files;            if (Files! = null && files. Count > 0)            {                string filename = files[0]. FileName;                var filesave = "e:\\file\\" + filename;                Files[0]. SaveAs (FileSave);            }            Context. Response.ContentType = "Text/plain";            Context. Response.Write ("Hello World");        }

C # Configuration Cors allows the request header (via Webconfig configuration), tried to write to the global way get can, post no (not in global section Code), no solution found

<system.webServer>    

"Cors cross-domain" H5 js cross-domain upload file, C # server-side receive

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.