0

Could not find a part of the path 'c:\users\mehdi\documents\visual studio 2012\Projects\Grid\Grid\Data Files\'.上記のディレクトリに保存されたファイルをダウンロードすると、このエラーが発生します。ダウンロードのコードは次のとおりです。

        protected void LinkButton1_Click(object sender, EventArgs e)
    {
        LinkButton lnkbtn = sender as LinkButton;
        GridViewRow gvrow = lnkbtn.NamingContainer as GridViewRow;
        string filePath = GridView1.DataKeys[gvrow.RowIndex].Value.ToString();
        Response.TransmitFile(Server.MapPath("~/Data Files/"));
        Response.End();
    }

助けてください..

4

1 に答える 1

0

Server.MapPath("~/Data Files/") を Server.MapPath("~\Data Files\") に変更してみてください

于 2013-09-25T18:55:46.573 に答える