I have a management application with many dbf. Now I am developing a web version of it.
Usually in desktop application I open only necessary tables in Form's Load, then I close every dbf in Form's Unload.
In web pages I open necessary tables in Page's OnLoad, but I have not find an "UnLoad" function where close tables, so dbf remain open and new tables are open by loading new web pages. I think it is not correct, due to excessive resource load on server. Moreover tables not closed could be damaged. Maybe I should open and close tables every time (in OnLoad and in every other function)?
Thank you very much