In working with ASP.Net I can create objects and load them into memory to be used by controls on the screen. What about removing them when you are finished with them. The help files lead me to believe this is an automatic process done by the CLR.
Is this true, or do I need to include code in my functions and sub routines to free up resources? I know with projects in the past I would always need to include 2 lines of code when working with record sets.
RecordSet.Close
Set RecordSet = Nothing
Along these same lines, are the data sets and data views stored in memory on the clients machine, or on the web server. It would seem to me it would be created on the users machine to take advantage of network resources. But I want to be sure.
Thank you in advance
Jason Meckley
Database Analyst
WITF
Is this true, or do I need to include code in my functions and sub routines to free up resources? I know with projects in the past I would always need to include 2 lines of code when working with record sets.
RecordSet.Close
Set RecordSet = Nothing
Along these same lines, are the data sets and data views stored in memory on the clients machine, or on the web server. It would seem to me it would be created on the users machine to take advantage of network resources. But I want to be sure.
Thank you in advance
Jason Meckley
Database Analyst
WITF