<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc = "http://purl.org/dc/elements/1.1/" xmlns="http://purl.org/rss/1.0/">
	<channel rdf:about="http://livedocs.adobe.com/">
	<title>LiveDocs Comments - coldfusion - 6.1 - htmldocs - tags-pt1.htm</title>	
		<link>http://livedocs.adobe.com/</link>
		<description>Macromedia LiveDocs - online documentation with user feedback.</description>
		<copyright>Copyright 2009, Macromedia, Inc.</copyright>
		<dc:date>2009-11-25T13:39:40</dc:date>
		<dc:language>en-us</dc:language>
		<items>
			<rdf:Seq>
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#22586" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#21755" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#14320" />
				<rdf:li rdf:resource="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#8721" />
			</rdf:Seq>
		</items>
	</channel>
	
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#22586">
		<title>coldfusion/6.1/htmldocs/tags-pt1.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#22586</link>
		<description>/me sniggers quietly...</description>
		<dc:creator>herakles_uk1</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-10-19T01:43:15</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#21755">
		<title>coldfusion/6.1/htmldocs/tags-pt1.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#21755</link>
		<description>fifthtime:&lt;br /&gt;&lt;br /&gt;I believe that would be the expected behavior, unless you have a cferror template defined.</description>
		<dc:creator>KiraganJeff</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-09-27T08:47:55</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#14320">
		<title>coldfusion/6.1/htmldocs/tags-pt1.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#14320</link>
		<description>this tag is not working in 6.1 and I am getting no help. &lt;br /&gt;&lt;br /&gt;      &lt;CFIF IsNumeric(memid) IS &quot;No&quot;&gt;&lt;br /&gt;         &lt;CFABORT SHOWERROR = &quot;Illegal Member Number.&quot;&gt;&lt;br /&gt;      &lt;/CFIF&gt;&lt;br /&gt;&lt;br /&gt;gives me error&lt;br /&gt;Error occurred while processing request.&lt;br /&gt;Illegal Member Number.  &lt;br /&gt; &lt;br /&gt;  &lt;br /&gt;The error occurred in D:\HTML\Users\userweb3\Html\listresults1.cfm: line 55&lt;br /&gt;Called from D:\HTML\Users\userweb3\Html\listresults1.cfm: line 53&lt;br /&gt;Called from D:\HTML\Users\userweb3\Html\listresults1.cfm: line 47&lt;br /&gt;Called from D:\HTML\Users\userweb3\Html\listresults1.cfm: line 1&lt;br /&gt; &lt;br /&gt;53 : 	&lt;CFELSE&gt;&lt;br /&gt;54 :       &lt;CFIF IsNumeric(memid) IS &quot;No&quot;&gt;&lt;br /&gt;55 :          &lt;CFABORT SHOWERROR = &quot;Illegal Member Number.&quot;&gt;&lt;br /&gt;56 :       &lt;/CFIF&gt;</description>
		<dc:creator>fifthtime</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-05-11T09:39:58</dc:date>
	</item>
	<item rdf:about="http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#8721">
		<title>coldfusion/6.1/htmldocs/tags-pt1.htm</title>
		<link>http://livedocs.adobe.com/coldfusion/6.1/htmldocs/tags-pt1.htm#8721</link>
		<description>We are working to improve the examples in the ColdFusion reference pages. We propose to replace/add the current example on this page with the the following examples. If you have any comments on this example, add them to this page. &lt;br /&gt;&lt;br /&gt;&lt;!--- TO RUN EXAMPLE C:&lt;br /&gt;&lt;br /&gt;            - Comment out Example B code &lt;br /&gt;&lt;br /&gt;            - Uncomment Example C code &lt;br /&gt;&lt;br /&gt;            - Create error template from cferror tag examples in online CFML Tag Reference ---&gt;&lt;br /&gt;&lt;br /&gt;&lt;!---&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;Example C: Use cfabort to halt the instructions with showmessage attribute and cferror&lt;/h3&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--- reset the variable and show the use of cfabort ---&gt;&lt;br /&gt;&lt;br /&gt;&lt;cfset myVariable = 3&gt;&lt;br /&gt;&lt;br /&gt;&lt;!--- now, perform a loop that increments this value ---&gt;&lt;br /&gt;&lt;br /&gt;&lt;cfloop from = &quot;1&quot; to = &quot;4&quot; index = &quot;Counter&quot;&gt;&lt;br /&gt;&lt;br /&gt;   &lt;!--- on the second time through the loop, cfabort ---&gt;&lt;br /&gt;&lt;br /&gt;   &lt;cfif Counter is 2&gt;&lt;br /&gt;&lt;br /&gt;               &lt;!--- Take out the cferror line to see cfabort error processed by CF error page ---&gt;&lt;br /&gt;&lt;br /&gt;              &lt;cferror type=&quot;request&quot; template=&quot;request_err.cfm&quot;&gt;&lt;br /&gt;&lt;br /&gt;              &lt;cfabort showerror=&quot;CFABORT has been called for no good reason&quot;&gt;&lt;br /&gt;&lt;br /&gt;              &lt;!--- processing is stopped, and subsequent operations are not carried out ---&gt;   &lt;br /&gt;&lt;br /&gt;   &lt;cfelse&gt;&lt;br /&gt;&lt;br /&gt;   &lt;cfset myVariable = myVariable + 1&gt;&lt;br /&gt;&lt;br /&gt;   &lt;/cfif&gt;   &lt;br /&gt;&lt;br /&gt;&lt;/cfloop&gt;&lt;br /&gt;&lt;br /&gt; &lt;br /&gt;&lt;br /&gt;&lt;cfoutput&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;   The value of myVariable after incrementing through the loop#counter# times is: #myVariable#&lt;br /&gt;&lt;br /&gt;&lt;/cfoutput&gt;&lt;br /&gt;&lt;br /&gt;---&gt;</description>
		<dc:creator>lbryngel</dc:creator>
		<dc:type>0 0</dc:type>
		<dc:date>2004-02-23T13:43:54</dc:date>
	</item>
	</rdf:RDF>

