aspjson
aspjson copied to clipboard
Classic ASP JSON Class Reading/Writing
The httpResponse text looks like... ``` {"returnObj":{"LaborHed": [{"Company":"MYCOMPANY","EmployeeNum":"A","LaborHedSeq":106,"PayrollDate":"2022-10- 06T00:00:00","Shift":11,"ClockInDate":"2022-10-05T00:00:00", ``` According to other posts on this topic it looks as though the issue I am getting is because the response...
Hello, Thank you for this very helpfull library. I have some problems to use it. My ajax send : ``` $.ajax({ url: 'data-delta.asp', type: 'POST', contentType: "application/json; charset=utf-8", data: JSON.stringify({...
Strings with a double backslash should be interpreted as a single backslash followed by the next character verbatim. Examples: - `\\n` → `\n` - `\\r` → `\r` - `\\t` →...
Declaration required when an ASP page has `Option Explicit`.
In the example write.asp shouldn't line 10 be changed from `With oJSON.data("familyMembers")` to `With .item("familyMembers")`
Line 240 reads: val = Clng(Replace(val, ".", "")) when val = 50.16093600000001 Apparently 14 decimal places wasn't expected in your code, but sometimes it is necessary (Latitudes and Longitudes may...
1.18 versinon -> iyziCommissionRateAmount=0.40000000 write 40000000 (not show comma) 1.19 version -> not read i want to read iyziCommissionRateAmount JSON DATA {"status":"success","locale":"tr","systemTime":1653066614838,"conversationId":"ETH1000","price":1.0,"paidPrice":10.0,"installment":1,"paymentId":"17604670","fraudStatus":1,"merchantCommissionRate":900.00000000,"merchantCommissionRateAmount":9.0,"iyziCommissionRateAmount":0.40000000,"iyziCommissionFee":0.25000000,"cardType":"DEBIT_CARD","cardAssociation":"MASTER_CARD","cardFamily":"Neo","binNumber":"589004","lastFourDigits":"0016","basketId":"ETH1000","currency":"TRY","itemTransactions":[{"itemId":"ETH1000","paymentTransactionId":"18814235","transactionStatus":2,"price":1.0,"paidPrice":10.00000000,"merchantCommissionRate":900.00000000,"merchantCommissionRateAmount":9.00000000,"iyziCommissionRateAmount":0.40000000,"iyziCommissionFee":0.25000000,"blockageRate":0E-8,"blockageRateAmountMerchant":0E-8,"blockageRateAmountSubMerchant":0,"blockageResolvedDate":"2022-05-28 00:00:00","subMerchantPrice":0,"subMerchantPayoutRate":0E-8,"subMerchantPayoutAmount":0,"merchantPayoutAmount":9.35000000,"convertedPayout":{"paidPrice":10.00000000,"iyziCommissionRateAmount":0.40000000,"iyziCommissionFee":0.25000000,"blockageRateAmountMerchant":0E-8,"blockageRateAmountSubMerchant":0E-8,"subMerchantPayoutAmount":0E-8,"merchantPayoutAmount":9.35000000,"iyziConversionRate":0,"iyziConversionRateAmount":0,"currency":"TRY"}}],"authCode":"222905","phase":"AUTH","hostReference":"mock00027iyzihostrfn"}
Hey, A big thanks for this lovely project as its a big help in keeping asp classic communicating with modern APIs. I would like to suggest the following: ### Loading...
Not really an issue, but I just wanted to thank you for making this library. I found it very useful when connecting an old ASP app to a new API.