Reputation: 873
I am uploaded Multi File Using Web api with jquery. In my one localhost application i upload multiple file using look like this:
Now, When i click the submit button all files data, images are save in using web api through second localhost application. my form code describe here.
When i press submit button gives error.. That display below:
Upvotes: 2
Views: 405
Reputation: 1041
You need to enable cross origin in your WebAPI like below
[EnableCors(origins: "http://yourdomain", headers: "*", methods: "*")]
Upvotes: 1