Hi All
I was informed that my web application that uses Crystal Reports was filling up the Servers Windows\Temp folder with report files.
After a google the best answer I could find to this problem was to close and dispose the report in the Page Unload:-
private void Page_Unload(object sender, System.EventArgs e) { if (MyReport != null) { MyReport.Close(); MyReport.Dispose(); } }
I have tested this code but I still get these report files being created.
Any concrete solutions to this?
I dont want to write some app to clean up the said location.
tia
Yuppski