现在我已经用webbrowser获取到了网页的代码,这段代码中有三个超链接
代码如下:
===================================================================
<html> <title>系统功能页面</title> <style type="text/css">
<!--
.STYLE1 {
font-size: 24px;
font-weight: bold;
color: #0000FF;
}
.STYLE2 {font-size: 24px; font-weight: bold; color: #9966CC; }
-->
</style>
<br><br>
<table width="100%" border="3" cellspacing="0" cellpadding="0">
<tr><td height="53" colspan=3><p align="center" class="STYLE1">请选择相应功能进行登录</p>
  </td>
</tr>
<tr><td height="43"><a href='http://www.a.com' class="STYLE2">日报入口</a>
    <td height="43"><a href='http://www.b.com' class="STYLE2">周报</a>
    <td height="43"><a href='http://www.c.com' class="STYLE2">月报</a>
</tr>
</table>
</html>
===================================================================================
现在我想在webbrowser控件中去执行访问www.c.com的那个超链接,也就是说要达到像在浏览器中
点击“月报”那个链接的效果,webbrowser的语句应该怎么写呢?
webbrowser.Document.All.tags("A")(0).Click
这个语句好像不行,访问的不对。