如何使用后面的代码ASP.NET从html输入文件中获取发布的文件

时间:2015-06-05 05:40:44

标签: file-upload

我正在使用jquery复制1行以在下面创建1行。控制是动态的。 我有1个控件可以从tableclone中复制和粘贴

<input type="button" value="Add Row" id="addrowbutton" class="Button" />

这是主要表格:

<table id="registrationtable" class="Grid">
<tr class="Caption">
    <th scope="col">
        Registration Number 
    </th>
    <th scope="col">  Is Install 
    </th>
    <th scope="col"> Upload File 
    </th>
    <th scope="col"> Remove 
    </th>
</tr>

我从这里克隆

<table id="tableclone" style="display: none;">
<tbody>
    <tr class="Row">
        <td style="white-space:nowrap;">
            <input id="RegistrasiNo" class="RegistrasiNoClass" type="text" />
        </td>
        <td>
            <asp:DropDownList ID="ddlIsInstall" runat="server" class="IsInstallclass">
                <asp:ListItem Value="Y" Text="Yes"></asp:ListItem>
                <asp:ListItem Value="N" Text="No"></asp:ListItem>
            </asp:DropDownList>
        </td>
        <td>
            <div style="float: left">
                <input type="file" id="fileUpload" class="fileuploadclass" />
            </div>
            <div style="float: left">
                <input type="button" value="Upload File" id="UploadFileControll" class="UploadFileControllclass" runat="server" />

            </div> 
        </td>
        <td><a href="#" class="removeItem">Remove</a></td>
    </tr>
</tbody>

<asp:Button ID="SaveRegistrationID" runat="server" Text="SAVE" OnClick="SaveRegistrationID_Click" CssClass="Button" />

当我点击按钮SAVE时,如何动态地从fileupload(超过1行)获取发布的文件?

0 个答案:

没有答案