我想做一个软件,就是登陆软件时,已经保存好登陆名和密码。
然后一个窗体里有一个WebBrowser控件,再把登陆名和密码传入WebBrowser里的html。 webBrowser1.DocumentText = "<html><head><title>无标题文档</title></head>" +
                "<body><div>" +
                "<FORM id=J_StaticForm method=post action=https://logn.taobao.com/member/beta_login.htm>" +
                "<DIV class=field><LABEL>账户名</LABEL> <INPUT class=login-text J_UserName J_Focused title=手机号/会员名/邮箱 tabIndex=1 value=" + textBox1.Text + " maxLength=32 name=TPL_username id=TPL_username></DIV>" +
                "<DIV class=field><LABEL>密 码</LABEL><INPUT class=login-text tabIndex=2 maxLength=20 size=32 type=password name=TPL_password id=TPL_password value=" + textBox2.Text + "></DIV>" +
                "<DIV class=submit><INPUT value=337d333b184d3 type=hidden name=_tb_token_>" +
                "<INPUT value=enable_post_user_action type=hidden name=actionForStable>" +
                "<INPUT value=Authenticator type=hidden name=action>" +
                "<INPUT type=hidden name=mi_uid>" +
                "<INPUT type=hidden name=mcheck>" +
                "<INPUT value=http://www.taobao.com/ type=hidden name=TPL_redirect_url>" +
                "<INPUT value=http://www.taobao.com/ type=hidden name=_oooo_>" +
                "<INPUT value=anything type=hidden name=event_submit_do_login>" +
                " <INPUT type=hidden name=abtest>" +
                "<INPUT type=hidden name=pstrong>" +
                "<INPUT type=hidden name=from>" +
                "<INPUT type=hidden name=yparam>" +
                "<INPUT type=hidden name=done>" +
                "<INPUT value=3 type=hidden name=loginType>" +
                "<INPUT type=hidden name=tid>" +
                "<INPUT value=000001 type=hidden name=support>" +
                "<INPUT value=1,0,0,7 type=hidden name=CtrlVersion>" +
                "<INPUT value=tbBeta type=hidden name=loginFromCount>" +
                "<BUTTON class=J_Submit tabIndex=3 type=submit>登录</BUTTON>" +
                "</DIV></FORM></div></body></html>";然后还要怎么做,发现这样子那个WebBrowser里的登录按钮无反应。