<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Form Submit Var Doesn&#8217;t Exist When You Use Enter Key To Submit Form</title>
	<atom:link href="http://coding.drewcorp.ca/coding/coldfusion/form-submit-var-doesnt-exist-when-you-use-enter-key-to-submit-form/feed/" rel="self" type="application/rss+xml" />
	<link>http://coding.drewcorp.ca/coding/coldfusion/form-submit-var-doesnt-exist-when-you-use-enter-key-to-submit-form/</link>
	<description>Memoirs of a Technomancer</description>
	<lastBuildDate>Sat, 05 Mar 2011 21:42:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: dcolumbus</title>
		<link>http://coding.drewcorp.ca/coding/coldfusion/form-submit-var-doesnt-exist-when-you-use-enter-key-to-submit-form/#comment-103</link>
		<dc:creator>dcolumbus</dc:creator>
		<pubDate>Fri, 12 Mar 2010 19:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://coding.drewcorp.ca/coding/coldfusion/form-submit-var-doesnt-exist-when-you-use-enter-key-to-submit-form/#comment-103</guid>
		<description>Instead of checking for FORM.Submit, create a hidden field with an ID of &quot;pageMode&quot; (or something similar) and a value of &quot;process&quot; (or something similar) ... then, once the page has submited, check for:

[code lang=&quot;coldfusion&quot;]
&lt;cfif isDefined(&quot;pageMode&quot;) and form.pageMode eq &quot;process&quot;&gt;
[/code]

Make sense? That way, when you submit the form, you&#039;re looking for a variable within the form that was submitted, not the form submission itself.</description>
		<content:encoded><![CDATA[<p>Instead of checking for FORM.Submit, create a hidden field with an ID of &#8220;pageMode&#8221; (or something similar) and a value of &#8220;process&#8221; (or something similar) &#8230; then, once the page has submited, check for:</p>
<pre class="brush: coldfusion; title: ;">
&lt;cfif isDefined(&quot;pageMode&quot;) and form.pageMode eq &quot;process&quot;&gt;
</pre>
<p>Make sense? That way, when you submit the form, you&#8217;re looking for a variable within the form that was submitted, not the form submission itself.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

