我们正在托管PURL网站,变量位于最后:http://mywebpage.com/first.last
现在,客户想要一个静态网页,然后输入第一个和最后一个,然后在提交时进入PURL网站。
用直接的html尝试了这个,但它不会起作用。关于ASP。
ASP新手,我正在尝试拥有一个包含2个字段的表单,首先是链接中的最后一个字段。这是表单概念:
<form id="form1" name="form1" method="post">
<p>
<label for="1">First Name:</label>
<input type="text" name="first" id="first" />
<label for="2">Last Name:</label>
<input type="text" name="last" id="last" />
</p>
<p><input type="submit" name="3" id="3" onclick="window.open('http://mywebpage.com/first=val1&.&last=val2')"/>
</p>
</form>
此时非常欢迎任何帮助我走上正确轨道的帮助。
谢谢你, 编
答案 0 :(得分:0)
试试这个:
<form id="form1" name="form1" method="GET" action="http://mywebpage.com/" >
然后在没有onclick
和window.open
的情况下进行正常提交。
action
会将表单提交到该网址,method="GET"
会在查询字符串中传递表单参数。