after long surfing via google I hope somebody can give good answer.
Here I have some javascript with 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 string in .NET that I can work with it?
I tried to use JINT (http://jint.codeplex.com/) but when I run script it's return for me type of object and I can not do anything with that...
I need with out some changes in javascript source get data. It's not JSON obj so I can not parse it.
Any suggestions?
Thanks
