WebBrowser居然解释不了
这样的元素?

starj1 2009-08-04 11:00:54
最近玩一个网页游戏,嫌官方的登录太麻烦.用C#写了一个登录器直接跳转.结果进了游戏以后,经常会出现解释不了新版的元素现象.是VS2005太旧的原因?
...全文
99 10 打赏 收藏 转发到动态 举报
写回复
用AI写文章
10 条回复
切换为时间正序
请发表友善的回复…
发表回复
starj1 2009-08-04
  • 打赏
  • 举报
回复
楼上的,别到处贴广告啊。要招人去灌水板块。还有,你那工资也开得太低了,打叫化子啊?
starj1 2009-08-04
  • 打赏
  • 举报
回复
问题是我在IE里能正常玩,但在WebBrowser里就会出错.

Internet Explore 脚本错误
当前页面的脚本发生错误。
行 22
Char 39
错误 语法错误
代码 0
URL http://mc13.91wan.com/user/game.php


下面是我通过上面的URL下载来的东西:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>欢迎您登录91玩《明朝时代》</title>
<link href="game_login/game_login.css" rel="stylesheet" type="text/css" />
<script language="javascript">
function showmsg() {
alert('');
}
</script>
<style type="text/css">
<!--
.STYLE2 {font-size: 12pt}
-->
</style>
</head>

<body >

<br />
<br />

<div class="wd987 zz clear">
<div class="cent"><br />
<br />
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="12" background="/images/index/su/dl_05.gif" class="su48"> </td>
</tr>
<tr>
<td background="/images/index/su/dl2_center.jpg" class="su97" align="center"><form id="form1" name="form1" method="post" action="game_login.php">
<br />
<table width="324" height="267" border="0" cellspacing="0" cellpadding="0" class="su62 su98">
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr>
<td rowspan="10" width="1%"></td>
<td colspan="3" ></td>
</tr>
<tr>
<td height="39" colspan="3" align="center" ><span class="STYLE2">欢迎登录91玩《明朝时代》</span></td>
</tr>
<tr>
<td width="26%" align="center">您的帐号:</td>
<td width="66%" align="left"><input name="login_user" type="text" class="smallInput" id="login_user" value="" size="22" style="width:160px" /></td>
<td width="7%" rowspan="3"></td>
</tr>
<tr>
<td align="center">您的密码:</td>
<td align="left"><input name="login_pwd" type="password" class="smallInput" id="login_pwd" size="22" style="width:160px" /></td>
</tr>
<tr>
<td align="right"> </td>
<td align="left"><table width="85%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
<td align="left"> </td>
<td align="left"><input type="image" src="/images/index/su/dl_04.jpg" width="61" height="24" />
<input name="act" type="hidden" id="act" value="1" />
<input name="fw_url" type="hidden" id="fw_url" value="http://login.91wan.com/fw.php?game_id=7&server_id=13" />
<input name="game_id" type="hidden" id="game_id" value="7" />
<input name="server_id" type="hidden" id="server_id" value="13" /></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="3" align="center" valign="top"><div align="left">
<hr width="300px" color="#d2d4d1" size="1" />
</div></td>
</tr>
<tr>
<td colspan="3" align="center" valign="top"><table width="66%" border="0" cellspacing="0" cellpadding="0" align="center">

<tr>
<td width="7%" height="25"><img src="/images/index/su/dl_05.jpg" width="12" height="11" /></td>
<td height="25" align="left">密码不见了您可以 <strong><a href="http://my.91wan.com/do.php?ac=lostpasswd" target="_blank" style="color:#DD3300">找回密码</a></strong></td>
</tr>
<tr>
<td height="25"><img src="/images/index/su/dl_06.jpg" width="12" height="11" /></td>
<td height="25" align="left">您还没有91玩帐号 <strong><a href="http://www.91wan.com/user/reg.php" target="_blank" style="color:#DD3300">注册帐号</a></strong></td>
</tr>
</table></td>
</tr>
</table>
</form></td>
</tr>
<tr>
<td background="/images/index/su/dl2_center.jpg" height="52"> </td>
</tr>
<tr>
<td height="7" background="/images/index/su/dl2_down.jpg" class="su48" > </td>
</tr>
</table>
</div><!--cent-->



<!--bottom-->
<div class="bottom clear">
<div class="wd987 zz clear">
<div class="bottom2 l_l">
<div class="bottom2_1">
<div align="center"><span class="bottom2_1"><a href="http://www.91wan.com/help/about.php" target="_blank">关于我们</a> | <a href="http://www.91wan.com/help/" target="_blank">客服中心</a> | <a href="http://www.91wan.com/help/about.php" target="_blank">商务合作</a> | <a href="http://www.91wan.com/help/help3.php" target="_blank">联系我们</a></span><br />
Copyright © 2006-2009   <a href="http://www.91wan.com">91wan网页游戏平台</a>   All Rights Reserved.<br />
</div>
</div>
</div>
</div>
</div>
<!--bottom end-->


</div>

</body>
</html>
wdgphc 2009-08-04
  • 打赏
  • 举报
回复
你的IE能正常解析打开的webbrowser也能。
cpp2017 2009-08-04
  • 打赏
  • 举报
回复
发广告的真可恨.
cpp2017 2009-08-04
  • 打赏
  • 举报
回复
不会.WebBrowser就是你现在用的ie.一样的.
liuzhiyyyy 2009-08-04
  • 打赏
  • 举报
回复
这人怎么到处发广告,你这点工资太低了,还想招有工作经验的,没工作经验的,我想基本也不会去啊

110,539

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧