Most of the questions I find on classic ASP and XHRs are about how to create and send an XMLHttpRequest with classic ASP. In my case I want to read the data sent in the XHR with classic ASP.
I'm not at all familiar with classic ASP; I'm writing (as little code as possible) in VBScript. I've sent an XHR to the server, using POST as method, with request.send(data) in javascript.
How do I now access that data on the server. I'm guessing it's stored somewhere in the Request -object, but I can't find it or make it work. Is the data stored in Request.ServerVariables? Or do I need to use the BinaryRead method?
EDIT: per AnthonyWJones's comment, I didn't specify a data format. But I guess I'd like to be able to send plain text, JSON or x-www-form-urlencoded data.