I have an asp.NET web app which application pool is .NET 2.0 I have following code to generate PDF file(with crystal report):
Response.ContentType = "application/pdf"
Response.WriteFile(PDFFileName)
it puts a pdf file on a specific folder.
It's working fine for long time. but after network changed, it is not working anymore. I guess it is permission issue. With about code, which account should have the write permission on the folder? Is it ASPNET Account?