I'm messing around with global.asa and I'm wondering if it's possible to create unique Object ID's using variables. Below is my example.
<object runat="server" scope="session" id="TDI" progid="tdrules.TD_Engine"></object>
My ID is currently TDI. What if I appended session.sessionID for a unique ID every session. So it looks something like this. I'd use a session variable so I could then reference that unique object ID throughout my current project.
session("TDISession") = "TDI_" & session.sessionID
<object runat="server" scope="session" id=session("TDISession") progid="tdrules.TD_Engine"></object>
And even if this is possible, are there any good reasons to do so?