The project I'm working on is integrating PHP written features / pages into an ASP written site. I'm trying to create a piece of ASP code that destroys ASP sessions when I'm on my PHP pages. I have no prior experience with ASP so forgive me for my ignorance.
So, what I plan to do is to create a simple html link on my PHP pages the points to an ASP page which I want to use to destroy the ASP sessions. I've tried doing the method Session.Abandon, set Session("name") = nothing, and Session("name") = "nothing". Unfortunately, all these methods do not work.
I'm at a lost and I've searched everywhere what could possibly be wrong. Ideas anyone?
Thanks in advance!
UPDATE: Is it a factor that the Sessions are originally created from a VBScript?