Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/asp.net/37.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html Aspx阻止我的表单_Html_Asp.net_Forms - Fatal编程技术网

Html Aspx阻止我的表单

Html Aspx阻止我的表单,html,asp.net,forms,Html,Asp.net,Forms,我正在客户端的网页,这是建立在aspx和silverlight 我有以下表格: <form method="post" action="https://app.freshmail.com//pl/actions/subscribe/"><br> <input type="hidden" name="subscribers_list_hash" value="here mu value"><br> <label for=

我正在客户端的网页,这是建立在aspx和silverlight

我有以下表格:

<form method="post" action="https://app.freshmail.com//pl/actions/subscribe/"><br>
      <input type="hidden" name="subscribers_list_hash" value="here mu value"><br>
      <label for="freshmail_email">Email2</label><br><br>
      <input type="text" id="freshmail_email" name="freshmail_email"> <br><br>
      <input type="submit" value="Wyślij"><br>
</form>


电子邮件2





因此,当我通过客户端的cms将此代码添加到网页时,表单会显示出来,但它不会执行表单。我创建简单的html只是为了检查表单是否有效,这意味着当我添加电子邮件地址并点击submit时,我需要到指定的网站确认地址已添加到列表中。那么aspx有什么东西阻止了它?任何帮助都将不胜感激。多谢各位

问题可能是标签?两个标记不能嵌套。因此,当您添加表单fromWeb页面时,标签位于一个表单标签之下,这就是problem@Piyush我不确定情况是否如此。这是我尝试过的“不工作”表单的链接,它将我带到
https://app.freshmail.com//pl/actions/subscribe/
即表单操作页面,因此我认为它应该仅像这样工作。