![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java JavaScript Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(JavaScript) Building a multipart/form-data Request for HTTP UploadUploading files to a web server typically requires building a multipart/form-data request where the files are contained in the sub-parts of the MIME request. Note: HTTP uploads require code on the server-side to receive the upload. For example, see Complete C# ASP.NET HTTP Upload Example This example produces the following HTTP multipart/form-data request: POST /something HTTP/1.1 Content-Type: multipart/form-data; boundary=------------070002080409050901090203 Host: domain Content-Length: 546 --------------070002080409050901090203 Content-Disposition: form-data; name="fileA"; filename="fileA.txt" Content-Type: text/plain This is the contents of file A --------------070002080409050901090203 Content-Disposition: form-data; name="fileB"; filename="fileB.txt" Content-Type: text/plain This is the contents of file B --------------070002080409050901090203 Content-Disposition: form-data; name="fileC"; filename="fileC.txt" Content-Type: text/plain This is the contents of file C --------------070002080409050901090203--
|
© 2000-2026 Chilkat Software, Inc. All Rights Reserved.