经典asp中的PHP session_regenerate_id的等价物

Hopefully a nice easy question to which I hope someone knows the answer.

I would like to know if there is an equivalent method to that of the session_regenerate_id() which you might find in PHP but for class ASP.

For those of you who do not know PHP but know classic ASP the result of this function is the regeneration of a new Session ID keeping the session data.

No, there is no equivalent method in ASP Classic.

The only option is to use Session.Abandon. This destroys the session after the scripts are executed and the page loaded.

A new session will be created on the next call, with a new ID.