把页面元素设计成网易、新浪的那种样子就可以了。

解决方案 »

  1.   

    网页元素?能否详细些?没搞懂!
      

  2.   

    也就是那些TextBox的ID要与他们原始登陆页面一样。当然,你可以改变类型,比如一个新浪的登陆页面有:
    <form name='login' method=post action=http://mail.sina.com.cn/cgi-bin/login.cgi>              
    <input type=text name=u value="Your Name" size=12 maxlength=20>        
    <input type=hidden name=pass size=0 maxlength=0>
    <input type=hidden name=user size=0 maxlength=0><input type=hidden name=mynum size=0>              
    <input type=password name=psw size=12 maxlength=20 value="Your Password">           
    <input type=hidden name=l value=http://mail.sina.com.cn/cgi-bin/mail.cgi>               
    <input type=hidden name=product value=mail>             
    <input type=submit name=Submit value='Submit' tabindex="1">                   
    </form>
    你也可以把u和psw做成是hidden,然后用JavaScript为其赋值,然后再提交。