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();
}
助けてください..