Multiple File Uploading using Javascript and Web API
Hi Guys, I had a requirement to make way to upload multiple files using basic htmls. So I used javascript to achieve this. Hope you like it. 1) MultiFileUpload.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeFile="MulitpleFileUpload.aspx.cs" Inherits="MulitpleFileUpload" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <script> function addRow() { var table = document.getElementById('myTable'); var row = table.insertRow(0); var cell1 = row.insertCell(0); var cell2 = row.insertCell(1); var cell3 = row.insertCell(2); ...