Как создать pdf файл с помощью itextshparp ASP.NET с#
Я пытаюсь создать pdf-файл, но он переходит к улову, и Pdf-файл никогда не создается.
Что я уже пробовал:
if (reader.Read()) { string Path = Server.MapPath("~/Reports/"); // string Path = Server.MapPath("/Reports"); string strImPath = Server.MapPath("~/Images"); Response.Write(Path + reader["EP"].ToString() + ".pdf");//directory and file name correct try { FileStream fs = new FileStream(Path + reader["EP"].ToString() + ".pdf", FileMode.Create, FileAccess.Write, FileShare.None);//something thing is wrong here file not being created //some code } catch { //this is what gets executed } I am trying to create a pdf but is jumps to the catch and the Pdf never get created.
F-ES Sitecore
Изучите исключение, чтобы увидеть, что это такое, это, вероятно, даст вам подсказку, в чем проблема.