首页里面一个登陆框是登陆OA系统的
OA是ASP做的,首页是aspx的请问怎吗样才能在首页里面提交表单到OA系统?
<form action="asp/mains_mun.asp" method=post name=form3>
                <tbody>
                  <tr>
                    <td width="32%">用 户:</td>
                    <td width="68%"><input name=user size=13></td>
                  </tr>
                  <tr>
                    <td>密 码:</td>
                    <td><input name=password size=13 type=password></td>
                  </tr>
                  <tr>
                    <td> </td>
                    <td height=22><INPUT type=image class=submit_img style="CURSOR: hand" 
                  onclick="form3.submit();" 
                  src="image/go1.gif" width="24" height="19" border=0>
                      <img border=0 
                  height=19 src="./image/button_03.gif" width=61> </td>
                  </tr>
              </form>
在aspx页面如何action到asp/mains_mun.asp??

解决方案 »

  1.   

    *.aspx?userID=xxx&passWord=xxxx或者来点加密解密
    http://aliketen.cnblogs.com/articles/363654.html
      

  2.   

    *.aspx?userID=xxx&passWord=xxxx
    ??
    我是要提交给asp页面,你能不能具体说清楚点?
      

  3.   

    *.aspx.cs里写Response.Redirect("*.aspx?userID=xxx&passWord=xxxx");
    Response.End();asp 用
    Dim userID,passWord
    userID = Request("userID")
    passWord = Request("passWord")
      

  4.   

    试试用AJAX做就是说用XMLHTTP,把用户名和密码POST给OA,然后根据返回结果决定是否跳转