目前,我的 html 代码有一个输入名字和姓氏的表单。我已将输入类型设置为submit
并将action
属性设置为 asp 文件。但是,当我单击提交按钮时,我的浏览器会显示一个对话框并询问我是否要下载上述 asp 文件。
这是html代码:
<!DOCTYPE html>
<html>
<body>
<form action="test1.asp" method="get">
First Name: <input type="text" name="firstname" /><br />
Last Name: <input type="text" name="lastname" /><br />
<input type="submit" value="Add Customer" />
</form>
</body>
</html>
我研究了提交表单,但我的表单代码看起来几乎与此网站上的代码一模一样:http: //www.w3schools.com/html/html_forms.asp
我还看到了一个与我遇到的问题类似的问题:
但是,在这种情况下,asp 文件正在自己执行,而我正在尝试通过 html 表单执行 asp 文件。
与往常一样,非常感谢任何和所有帮助。