In my web appllcation using asp.net as front end and oracle as backend. This application is totally base on crystal report.
I have written the code for closing and disposing the report document in the session which close and dispose the rpt files in the temp folder. When I recycle the worker process the close button becomes very close or sometimes hangs. So, Please give me some suggestion regarding the close button. Is there any additional code inorder to make the performance of the worker process fast.
I'm guessing these rpt files are very large? It seems to me like your GUI waits for the file to be disposed of before updating. Maybe you could spawn a thread to delete the file and then let the GUI continue. Only thing is you have to make sure that deleting the rpt file doesn't have any dependencies, otherwise you run into multithreading issues.
BTW is this the proper place for this type of question?
Intel I7 860 @ 2.8Ghz - CM Hyper 212+ - Asus P7P55D Pro - HIS Radeon HD 5850 - WD Caviar 160&320 GB - Samsung SH-S223B - CM 690 MidTower - CM 700 SilentPro
Reply to era86