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

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -