image.save和web.config的问题
通过运行生成一个image, 我把它存在image.Save(@"C:\Inetpub\wwwroot\listsubreport\images\probe.jpg");里。如果在web.config中加入<identity impersonate="true" userName="Administrator" password="admoleaceae"></identity>,每次运行的image不能把上次的覆盖掉,我必须每次重新命名,否则会出现错误信息,General error in GDI +.
如果在web.config中去掉<identity impersonate="true" userName="Administrator" password="admoleaceae"></identity>,每次运行的image则能把上次的覆盖掉。
但是, 我需要生成一个pdf文件,没有identity,在生成pdf文件中会友错误,
string mimType = string.Empty;
string extension = string.Empty;
Encoding encoding = null;
byte[] buffer = Telerik.Reporting.Processing.ReportProcessor.Render(
"PDF", report, null, out mimType, out extension, out encoding);
FileStream fs = new FileStream("D:\\report1.pdf", FileMode.Create);
fs.Write(buffer, 0, buffer.Length);
fs.Flush();
fs.Close();
在FileStream fs = new FileStream("D:\\report1.pdf", FileMode.Create);会有错误,大意是,Access to the path D: \ report1.pdf was denied.
给我弄得不知怎么好,请高人帮帮忙!谢谢!在线等!
--------------------编程问答-------------------- 帮LZ顶上去
补充:.NET技术 , ASP.NET