Classic ASP server-side JSON library

前端 未结 4 1727
情深已故
情深已故 2020-12-16 23:28

I have inherited some Classic ASP code and I need a JSON library that can be instantiated and run server-side for use with JavaScript-coded server-side ASP.

How can

4条回答
  •  渐次进展
    2020-12-17 00:06

    For writing/outputting JSON i believe the aspjson project is a pretty good choice. Parsing JSON in ASP "classic" is discussed here:

    • Any good libraries for parsing JSON in Classic ASP?

    In that thread, Chris Nielsen has a creative idea of using a Javascript library on the server side (as ASP supports JScript as well as VBScript). I have not tried it, but maybe that could solve both parsing and writing.

提交回复
热议问题