Hi,
I have situation to integration Amazon product API on my web pages where by user type any keyword on my webpage and it search on amazon database through amazon webservices which is free to use and show the result on gridview with image titile prices etc on my webpage.
Please advice
thanks
Hi nauna,
You should loop through each item like below.
foreach (var itemLst in response.Items) { if (itemLst.Item != null) { foreach (var item in response.Items[0].Item) { //do your stuff } } }
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.