Recently got a new machine to setup and run previously working code with classic ASP
, on IIS 7.5
with SQL Server 2008 R2
on a 64-bit
Windows 7 Enterprize
(local development environment). Local regional settings : American.
Problem: Identical code works on old machine but all the AJAX
code is broken on the new machine with the following message
An error has occured. (parsererror / SyntaxError: JSON.parse: expected ',' or ']' after array element at line x column xxx of the JSON data)
I can see for a particular page where data should be picked up for a particular colum of JSON response, that picks up wrong colum (could be due to COMMA separation issue(!)). On the pages data is displayed for a particular month of the Year. That is picked up from browser with Request.Form("time")
piece of code.
Question: Is it some kind of localization issue? If yes, then where? On the Web server or SQL server. Don't seem to understand where to start finding the issue.
Code can be viewed here.