Collecting data from website in DataTable
-
i have parser which runs daily through which Need to fetch data form below website through coding (asp.net). Need date and closing price from table. http://www.nasdaqomxnordic.com/shares/Historical_prices/?Instrument=SSE4928[^] In View source didnt get the data so can not use that way. How can i acheive this?
-
i have parser which runs daily through which Need to fetch data form below website through coding (asp.net). Need date and closing price from table. http://www.nasdaqomxnordic.com/shares/Historical_prices/?Instrument=SSE4928[^] In View source didnt get the data so can not use that way. How can i acheive this?
Using Chrome I can see that this data is held in a table, so you need to use the DOM tree to get to the table and extract the individual items. You could also check if the website makes this data available as pure XML.
Unrequited desire is character building. OriginalGriff I'm sitting here giving you a standing ovation - Len Goodman
-
i have parser which runs daily through which Need to fetch data form below website through coding (asp.net). Need date and closing price from table. http://www.nasdaqomxnordic.com/shares/Historical_prices/?Instrument=SSE4928[^] In View source didnt get the data so can not use that way. How can i acheive this?
-
I think the data is loaded in browser memory on purpose so you can't scrape the data and parse it. They must have a subscription service that your client can pay to subscribe to. Data is money, there not giving it away.
so i need to login programatically. How can i do that?