rcdmk / aspJSON

A fast classic ASP JSON parser and encoder for easy JSON manipulation to work with the new JavaScript MV* libraries and frameworks.
MIT License
203 stars 89 forks source link

There is no vbback in old ASP #53

Closed flameward closed 6 years ago

flameward commented 6 years ago

My solution.

dim vbback vbback = Chr(8)

rcdmk commented 6 years ago

Thank you. I'll fix that soon.

MarcoMiltenburg commented 6 years ago

I think something went wrong with this fix in commit 86f0f5999586da462fe0c41540be8732b6068dc6. First of all the use of vbback is still in the code and the code to replace the tab character was changed in a way that causes a compilation error. char(8) is invalid and should be chr(9) (i.e. without the 'a' and '9' instead of '8').