after long surfing through google i hope someone can give a good answer.
Here I have javascript that I get in .NET C #
<script type="text/javascript"> var itemMap = new Array(); itemMap[0] = { pid: "20466846", sku: 13897265, sDesc: "XSMALL", sId: "101979", cDesc: "Black", cId: "1203740", avail: "IN_STOCK", price: "$4.99", jdaStyle: "60016655"
};
How can I get results from this line in .NET that I can work with?
I tried using JINT ( http://jint.codeplex.com/ ), but when I run the script, it returns the type of the object to me and I can not do anything with this ...
I need to get the data with some changes in the javascript data source. This is not a JSON obj, so I cannot parse it.
Any suggestions?
thanks
source share