<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>RSS feed for InstantSpot site evBlog</title><link>http://ev.instantspot.com</link><description>technology... head spinning technology</description><language>en-us</language><copyright>This work is Copyright &#xA9; 2009 by evBlog</copyright><generator>RSSVille ColdFusion FeedMaker, version 1.0</generator><pubDate>Sat, 21 Nov 2009 11:58:29 GMT</pubDate><item><title>ColdFusion Tag of the Week: CFSAVECONTENT</title><link>http://ev.instantspot.com/blog/2007/05/04/ColdFusion-Tag-of-the-Week-CFSAVECONTENT</link><description>&lt;p class=&quot;MsoNormal&quot;&gt;  Inspired by a recent post over at &lt;a href=&quot;http://www.cfsilence.com/blog/client/index.cfm&quot;&gt;&amp;lt;cfsilence&amp;gt;&lt;/a&gt;   &lt;a href=&quot;http://www.cfsilence.com/blog/client/index.cfm&quot;&gt;&lt;/a&gt;    and a handout &lt;a href=&quot;http://daveshuck.instantspot.com/blog/&quot;&gt;Dave&lt;/a&gt; gave us  at the last &lt;a href=&quot;http://dfwcfug.instantspot.com/index.cfm/show/Home&quot;&gt;DFWCFUG&lt;/a&gt;  meeting I decided I wanted to start a blog series.&lt;span&gt;  &lt;/span&gt;With this series of posts I hope to highlight  a ColdFusion tag or function that people may have forgotten about or may not  ever use.&lt;span&gt;  &lt;/span&gt;Or I may even highlight a tag  that a lot of people use and that more should be aware of,  &amp;lt;cfqueryparam&amp;gt; comes to mind.&lt;span&gt;  &lt;/span&gt;I will also use these  posts to highlight &lt;a href=&quot;http://codeshare.ulatu.com/&quot;&gt;codeShare&lt;/a&gt;, a  project that &lt;a href=&quot;http://fro.instantspot.com/&quot;&gt;Fro&lt;/a&gt; and I worked on and  that &lt;a href=&quot;http://www.daveshuck.com/blog/&quot;&gt;Dave&lt;/a&gt; and &lt;a href=&quot;http://ajlcom.instantspot.com/blog/&quot;&gt;Aaron&lt;/a&gt; did a great job integrating  into &lt;a href=&quot;http://www.instantspot.com&quot;&gt;InstantSpot&lt;/a&gt; .&lt;span&gt;  &lt;/span&gt;If you ever need to  share code with someone over the Internet &lt;a href=&quot;http://codeshare.ulatu.com/&quot;&gt;codeShare&lt;/a&gt;  is a perfect place to do it.&lt;span&gt;  &lt;/span&gt;If you have  any suggestions for a tag to highlight shoot me an email at ryan DOT Everhart AT  gmail DOT com.&lt;span&gt;&lt;/span&gt;   &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  This may or may not get as loyal of following as &lt;a href=&quot;http://andyjarrett.co.uk/andy/blog/index.cfm?mode=cat&amp;amp;catid=1991A939-3048-28EB-0E59953D1F531938&quot;&gt;Andy  Jarrett&amp;rsquo;s Friday Jokes&lt;/a&gt;, but it&amp;rsquo;s worth a shot!&lt;span&gt;  &lt;/span&gt;So with out further delay the first every  ColdFusion Tag of the Week!&lt;span&gt;  &lt;/span&gt;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  This week&amp;rsquo;s tag is a tag that I&amp;rsquo;ve been using a lot of lately when writing AJAX with Rob Gonda&amp;rsquo;s &lt;a href=&quot;http://www.robgonda.com/blog/projects/ajaxcfc/&quot;&gt;ajaxCFC&lt;/a&gt;.&lt;span&gt;  &lt;/span&gt;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &lt;strong&gt;The Tag:&lt;/strong&gt; &lt;br /&gt;  &amp;lt;cfsavecontent&amp;gt;&lt;br /&gt;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &lt;strong&gt;The Definition:&lt;/strong&gt;&lt;span&gt;  &lt;/span&gt;&lt;br /&gt;  Saves  the generated content of the &lt;span&gt;cfsavecontent&lt;/span&gt;  tag, including the results of evaluating expressions and executing custom tags,  in the specified variable.  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &lt;strong&gt;The Tag Sample:&lt;/strong&gt; &lt;br /&gt;  [codeShare may1a619]  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &lt;strong&gt;The Real Life Example:&lt;/strong&gt; &lt;br /&gt;  [codeShare maye272b]  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &lt;strong&gt;The Uses:&lt;/strong&gt;&lt;br /&gt;  Like I mentioned above I use this a lot when working with  AJAX. It allows me to write HTML code and send it back to the user thru  javascript as a string.&lt;span&gt;&amp;nbsp; &lt;/span&gt;This is MUCH  easier than trying to write HTML code using javascript. Another use for it may  be to create content for use in a &amp;lt;cfmail&amp;gt;.&lt;span&gt;&amp;nbsp;&amp;nbsp; &lt;/span&gt;There are some situations where you may need  to output more than one query within a &amp;lt;cfmail&amp;gt; tag and its not always  possible.&lt;span&gt;&amp;nbsp; &lt;/span&gt;However with  &amp;lt;cfsaveconent&amp;gt; it is possible, in fact your &amp;lt;cfmail&amp;gt; tag may even  look a bit cleaner if you use &amp;lt;cfsaveconent&amp;gt;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &amp;nbsp;  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  &lt;strong&gt;The Bonus Code&lt;/strong&gt;:&lt;br /&gt;  [codeShare mayb4916]  &lt;/p&gt;  &lt;p class=&quot;MsoNormal&quot;&gt;  Good Day!&lt;br /&gt;  Ryan &lt;br /&gt;  &lt;/p&gt;  </description><pubDate>Fri, 04 May 2007 08:46:18 GMT</pubDate><guid>http://ev.instantspot.com/blog/2007/05/04/ColdFusion-Tag-of-the-Week-CFSAVECONTENT</guid><category>ColdFusion Tag of the Week</category></item><item><title>Challenge Accepted!</title><link>http://ev.instantspot.com/blog/2006/09/28/Challenge-Accepted</link><description>&lt;p&gt;  &lt;span class=&quot;q&quot;&gt;I&amp;rsquo;ve been called a lot of mean things in my life some to my  face and surely more behind my back.&lt;span&gt;&amp;nbsp;  &lt;/span&gt;However the other day I got called a name by a guy I don&amp;rsquo;t even know! &lt;span&gt;&amp;nbsp;&amp;nbsp;&lt;/span&gt;This guy, &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm&quot; target=&quot;_blank&quot;&gt;Todd&lt;/a&gt;, if that is his real name, called  me a lurker!!!&lt;span&gt;&amp;nbsp; &lt;/span&gt;A lurker??!!&lt;span&gt;&amp;nbsp; &lt;/span&gt;How can you call me a lurker if you don&amp;rsquo;t  even know me &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm&quot; target=&quot;_blank&quot;&gt;Todd&lt;/a&gt;??&lt;/span&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;span class=&quot;q&quot;&gt;Well &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm&quot; target=&quot;_blank&quot;&gt;Todd&lt;/a&gt; didn&amp;rsquo;t just call me a lurker he called A LOT of ColdFusion  developers lurkers or takers.&lt;span&gt;&amp;nbsp; &lt;/span&gt;We can define lurkers  or takers in this case as developers that take code from blogs or other  community sites but don&amp;rsquo;t give back to the community.&lt;span&gt;&amp;nbsp; &lt;/span&gt;For whatever reason, either they are too busy  or too lazy they just don&amp;rsquo;t give back.&lt;span&gt;&amp;nbsp;  &lt;/span&gt;Therefor &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm&quot; target=&quot;_blank&quot;&gt;Todd&lt;/a&gt; proposed a &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm/2006/9/26/Open-Challenge-to-the-ColdFusion-Community&quot; target=&quot;_blank&quot;&gt;challenge&lt;/a&gt;.&lt;span&gt;&amp;nbsp;  &lt;/span&gt;The &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm/2006/9/26/Open-Challenge-to-the-ColdFusion-Community&quot; target=&quot;_blank&quot;&gt;challenge&lt;/a&gt; was for us all to get more involved in the ColdFusion  Community, write a blog, join a CFUG or mailing list.&lt;span&gt;&amp;nbsp; &lt;/span&gt;Do something to give back.&lt;/span&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;span class=&quot;q&quot;&gt;Well &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm/&quot; target=&quot;_blank&quot;&gt;Todd&lt;/a&gt;, &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm/2006/9/26/Open-Challenge-to-the-ColdFusion-Community&quot; target=&quot;_blank&quot;&gt;challenge&lt;/a&gt; accepted!&lt;span&gt;&amp;nbsp; &lt;/span&gt;I&amp;rsquo;m going to try my best to make time to give  back.&lt;span&gt;&amp;nbsp; &lt;/span&gt;What I say here on my InstantSpot  may seem silly to those more experienced than I, so for that I apologize and  welcome all feedback.&lt;span&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;span class=&quot;q&quot;&gt;If you are new to the ColdFusion or Blog thing, here are some  of the hot spots I visit often,.&lt;/span&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;a href=&quot;http://www.daveshuck.com/blog/&quot; target=&quot;_blank&quot;&gt;Dave Shuck&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://www.aaronjlynch.com/blog/&quot; target=&quot;_blank&quot;&gt;Aaron J Lynch&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://mattwoodward.com/blog/&quot; target=&quot;_blank&quot;&gt;Matt Woodward&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://cfsilence.com/blog/client/index.cfm&quot; target=&quot;_blank&quot;&gt;Todd Sharp&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://fro.instantspot.com/blog/index.cfm&quot; target=&quot;_blank&quot;&gt;Robert Froehling&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://ray.camdenfamily.com/index.cfm&quot; target=&quot;_blank&quot;&gt;Ray Camden&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://www.markdrew.co.uk/blog/index.cfm&quot; target=&quot;_blank&quot;&gt;Mark Drew&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://www.coldfusionweekly.com/&quot; target=&quot;_blank&quot;&gt;ColdFusion Weely&lt;/a&gt;&lt;br /&gt;  &lt;a href=&quot;http://tech.groups.yahoo.com/group/ajaxcfc/&quot; target=&quot;_blank&quot;&gt;ajaxCFC Yahoo! Group&lt;/a&gt;  &lt;/p&gt;  &lt;p&gt;  &lt;span class=&quot;q&quot;&gt;Good Day!&lt;br /&gt;  Ryan&lt;/span&gt;  &lt;/p&gt;  </description><pubDate>Thu, 28 Sep 2006 14:09:05 GMT</pubDate><guid>http://ev.instantspot.com/blog/2006/09/28/Challenge-Accepted</guid></item></channel></rss>