Thanks for an awesome meeting everyone. Here are a few things I wanted to provide you, but in my disorganization, was not able.
Code to dynamically change page titles, meta descriptions, etc. <cfset variables.NewPageTitle = "Plates and Dinnerware"> <cfset variables.PageContent = REReplaceNoCase(getpagecontext().getCFOutput().getString(),"<title>[^>]* >","<title>#variables.NewPageTitle#</title>","one")> <cfcontent type="text/html" reset="yes"> <cfoutput>#variables.PageContent#</cfoutput> The key there is: getpagecontext().getCFOutput().getString() You can run this anywhere in your page, it does not have to be in an OnRequestEnd.cfm If you really want to see how different yahoo and google search results are try this: http://www.langreiter.com/exec/yahoo-vs-google.html If you want to know who's related to who in the search engine world, look at this: http://www.bruceclay.com/searchenginerelationshipchart.htm - Daniel Elmore ---------------------------------------------------------- To post, send email to [email protected] To unsubscribe: http://www.dfwcfug.org/form_MemberUnsubscribe.cfm To subscribe: http://www.dfwcfug.org/form_MemberRegistration.cfm
