1

我需要为网格视图中的每一行设置文件上传按钮。最后我需要一个按钮来上传从文件上传按钮中选择的文件。我有一个代码,但它同时具有文件上传按钮和更新按钮,但是如果我更改命令名称,它就不起作用。下面是我的代码。

在我的代码中,我同时显示了文件上传按钮和按钮更新。这很好用,但我需要多个文件上传按钮和单个按钮来更新所有文件。

    <asp:GridView ID="GridView1" runat="server">
            <Columns>
                <asp:TemplateField>
                    <ItemTemplate>
                        <asp:FileUpload ID="FileUpload1" runat="server" />
                        <asp:Button ID="Button1" runat="server" CommandArgument='<%# Container.DataItemIndex  %>'
                            Text="Upload" OnClick="Button1_Click" />
                    </ItemTemplate>
                </asp:TemplateField>
            </Columns>
        </asp:GridView>

protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            string[] strArray = { "Test1", "Test2", "Test3" };
            GridView1.DataSource = strArray;
            GridView1.DataBind();
        }
    }

    protected void Button1_Click(object sender, EventArgs e)
    {
        int index = int.Parse(((Button)sender).CommandArgument);

        FileUpload file = (FileUpload)GridView1.Rows[index].FindControl("FileUpload1");

        if (file != null)
        {
            if (file.HasFile)
            {
                Response.Write(file.PostedFile.FileName);
                Response.End();
                //file.SaveAs(Server.MapPath("~") + "\\DataBind\\" + System.IO.Path.GetFileName(file.PostedFile.FileName));
            }
        }
    }
4

1 回答 1

0

看起来你很近。您只想对所有行执行相同的操作。您可以为此使用 foreach 循环:

protected void Button1_Click(object sender, EventArgs e)
{
    foreach (GridViewRow row in GridView1.Rows)
    {
        FileUpload file = (FileUpload)row.FindControl("FileUpload1");

        if (file != null)
        {
            if (file.HasFile)
            {
                // Save your file here
            }
        }
    }
}
于 2013-04-22T19:33:08.683 回答