0

我在网页上有这个 html 代码:

<form action="" type=post>
      <label for="name"><div><br>Account</br></div></label> <input type=text id="name" name="account" size=20 maxlength=32 /><br>
       <label for="name"><div><br>Password</br></div></label> <input type=password id="name" name="password" size=20 maxlength=14 /><br> 
      <button type=submit>Okay</button>
    </form>

如何在“帐户”和“密码”标签的另一页上从我的 asp.net webproject 值发送?

包含标签的页面不在同一个域中。

4

1 回答 1

0

action您可以在属性中放置一个绝对 URL ,如下所示:

<form action="https://othersite.com/login.aspx" type=post>
  <label for="name"><div><br>Account</br></div></label> <input type=text id="name" name="account" size=20 maxlength=32 /><br>
   <label for="name"><div><br>Password</br></div></label> <input type=password id="name" name="password" size=20 maxlength=14 /><br> 
  <button type=submit>Okay</button>
</form>

这对你不起作用吗?

于 2013-02-02T18:47:38.960 回答