Aniruddha Tewary Ответов: 0

Я должен получить некоторые конкретные данные с другой веб-страницы, которая построена в angular js.


it's not returning proper html and suppose after search that site returning 4 item but page source shows only one item with this {{item.name}} type of syntax

please help me how to solve this issue


Что я уже пробовал:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
            request.Method = "GET";
            response = request.GetResponse();
            reader = new StreamReader(response.GetResponseStream(), Encoding.UTF8);
            result = reader.ReadToEnd();

            HtmlDocument doc = new HtmlDocument();
            doc.LoadHtml(result);

0 Ответов