我有一个开发网站的计划,因为我必须阅读外部网页的内容。有没有办法在c#asp.net中实现相同的目标,因为我对这种语言不熟悉。
<html>
<head>
<title>
some title goes here
</title>
</head>
<body>
<div id="Container">
<div id="Main_Contents">
<div class="news">Some contents here.</div>
<div class="news">Some contents here. Some more here.</div>
<div class="news">Some contents here. Few more contents are here</div>
<div class="UnWanted">Unnecessary contents presents here</div>
<div class="news">Some contents here.</div>
</div>
</div>
</body>
</html>
假设,上面的页面是外部页面。现在我的目的是阅读其课程&#39; news&#39; 的div的内容,即<div class="news">
不是那个与“不想要的”&#39;类即可。在页面中可能会有更多这样的div,我必须在订单中获得所有这些。
我在PHP中使用html_dom库做了同样的事情,但现在我转而使用ASP .Net