Ask Ben: Grabbing Google Results with CFHttp

<!--- Grab the google search results. --->
<cfhttp
	url="http://www.google.com/search?hl=en&lr=&q=Girls+Gone+Wild&btnG=Search"
	useragent="Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; FDM)"
	result="objGoogleGrab"
	method="GET"
	resolveurl="true"
	/>
 
<!--- Output the search results. --->
<cfoutput>
	#objGoogleGrab.FileContent#
</cfoutput>

For Cut-and-Paste