asp classic - Is it possible to use a variable for the object ID in a global.asa Object -
i'm messing around global.asa , i'm wondering if it's possible create unique object id's using variables. below example.
<object runat="server" scope="session" id="tdi" progid="tdrules.td_engine"></object>
my id tdi. if appended session.sessionid unique id every session. looks this. i'd use session variable reference unique object id throughout current project.
session("tdisession") = "tdi_" & session.sessionid <object runat="server" scope="session" id=session("tdisession") progid="tdrules.td_engine"></object>
and if possible, there reasons so?
Comments
Post a Comment