I am having problems getting the Search collection I created to display the PDF files. When I perform a search I am able to get the pdf file listing put when I select a PDF file to display it it does nothing. Please help, below is the Search Action page I did
<head>
<title>Search Results</title>
</head>
<body>
<cfsearch
name= "newspaperarchive_results"
collection= "newspaperarchive"
criteria= "#Form.Criteria#">
ContextHighlightBegin="<b>"
ContextHighlightEnd="</b>"
ContextPassages="1"
ContextBytes="500"
maxrows= "100">
<h2>Search Results</h2>
<cfoutput>
Your search returned #newspaperarchive_results.RecordCount# file(s).
</cfoutput>
<cfoutput query="newspaperarchive_results">
<p>
File: <a href="#url#">#key#</a><br>
Document Title (if any): #Title#<br>
Summary: #Summary#<b>
Highlighted Summary: #context#</p>
</cfoutput>
</body>
</html>