私はフォルダ(ファイル)を作成します。ボタン(btnGenerate_Click)をクリックすると、pdfファイルを作成してフォルダに保存する必要があります。しかし、 "C:\ User \ VS \ Intra \ Intra.Admin \ File \"のパスの一部を見つけることができませんでしたが、パスの場所は正しいです... 。エラーメッセージの表示:「パスの一部を見つけることができませんでした」
protected void btnGenerate_Click(object sender, EventArgs e)
{
string FilePath = MapPath("~/File/"); //here!
iTextSharp.text.Document pdfDoc = new iTextSharp.text.Document(iTextSharp.text.PageSize.A4, 20f, 20f, 20f, 20f);
PdfWriter.GetInstance(pdfDoc, new FileStream(FilePath, FileMode.Create));
StringWriter sw = new StringWriter();
HtmlTextWriter hw = new HtmlTextWriter(sw);
GridView1.AllowPaging = false;
GridView1.HeaderRow.Cells[1].Text = "Message";
GridView1.HeaderRow.Font.Bold = true;
GridView1.RenderControl(hw);
StringReader sr = new StringReader(sw.ToString());
HTMLWorker htmlparser = new HTMLWorker(pdfDoc);
PdfWriter.GetInstance(pdfDoc, Response.OutputStream);
pdfDoc.Open();
htmlparser.Parse(sr);
pdfDoc.Close();
Response.Write(pdfDoc);
Response.ContentType = "Application/pdf";
Response.WriteFile(FilePath);
Response.End();
}
ファイルの名前はどこですか?これはファイル名のように使用しようとしているフォルダ名です。 – Steve