Get Classic ASP variable from posted JSON

后端 未结 8 1973
挽巷
挽巷 2021-02-08 11:01

I\'m trying to post JSON via AJAX to a Classic ASP page, which retrieves the value, checks a database and returns JSON to the original page.

I can post JSON via AJAX. I

8条回答
  •  失恋的感觉
    2021-02-08 11:20

    I having same issue but very soon i figure out how to post a json object to ASP server.

    Here is the idea: not tested. Work hard on it ><.

    Parse the json object into string then post back to server.(this is a typical string posting)

    on ASP side, use JSON library to parse the string back into the object.

    link for the JSON library http://code.google.com/p/aspjson/

    'I assume ppl that try post JSON back to asp should have basic posting knowledge. Any further assistance please let me know

提交回复
热议问题