snakehips2000
Programmer
There's probably something basic I'm missing here but, if my ASP page contains the following:
If User 1 runs the page and, whilst executing and having set the recordset and connection object variables, User 2 starts to run the same script, will User 2 be impacted once the above code is reached by User 1?
In other words, are the above object variables set at application level or at script level (thereby allowing each user to have their own set of rsProducts and objConnection variables)?
Thanks and hope that makes sense.
Brian
Code:
<%
rsProducts.Close
Set rsProducts = Nothing
objConnection.Close
Set objConnection = Nothing
%>
In other words, are the above object variables set at application level or at script level (thereby allowing each user to have their own set of rsProducts and objConnection variables)?
Thanks and hope that makes sense.
Brian