Coldfusion表单提交的问题

时间:2012-03-21 16:29:04

标签: forms coldfusion dreamweaver

我的表单提交有点麻烦,我担心我需要一些建议。

我有一个表单,我希望用户提交一些文本,当他们按下提交时,它会将他们带到一个操作页面,在那里输入将被处理。我写了一些代码,只是为了弄清楚当我在Dreamweaver中测试它时,提交按钮无法正常工作。

代码如下所示:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<head>
    <title>Test Page</title>
</head>
<cfinclude template="head.cfm">

<cfform name="select_action" action="testaction.cfm" method="post">
    Enter some text here 
    <input type="text" size="50" value="Enter some text here" maxlength="150"  name="someText"><br>

    <INPUT TYPE="RESET" NAME="reset" VALUE="Reset Form">
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 

    <INPUT TYPE="SUBMIT" NAME="submit" VALUE="Submit Form">
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 
</cfform>

<cfinclude template="foot.cfm">

我已正确配置Dreamweaver进行测试,因为我可以重置表单并且它正确显示等等。只是提交按钮不会带我到任何地方。

我觉得有一些非常明显的东西我不知道,有什么建议吗?

感谢您的时间,

约旦

1 个答案:

答案 0 :(得分:2)

虽然在Dreamweaver中进行测试似乎是一个好主意,但我还没有发现它有用。您应该一次在多个浏览器中打开您的页面,例如Firefox和Chrome。在真实浏览器中测试页面的行为,而不是Dreamweaver。

另外,只有在需要CFFORM的情况下才会使用CFFORM。从元素的外观来看,你不需要它。