Erik Sapir
Erik Sapir

Reputation: 24737

Html/JS - how can i open file dialog and send the chosen file

I want to open a file dialog, and send the chosen file (using xmlHttpRequest object) with Basic Authentication header. I understand that it is a problem to receive the file content.

What is the best solution?

Upvotes: 1

Views: 720

Answers (1)

DavidJCobb
DavidJCobb

Reputation: 1131

You could use an <input type="file"> as part of a standard HTML form.

Upvotes: 1

Related Questions