|
Good Morning,
What I have is a page with a CFSET which list several members of the orgainzation. I want to be able to select whichever of the members and detailed information of that member appears on a different page. Here is the information on the CFset page. I have the results page set up with a table and the Recordset but I dont know how to get the results page to show the proper member when it is selected from the first page. The site is connected to a Access Database via Cold Fusion.
Here is the information on the CFset page=
<cfset CurrentPage=GetFileFromPath(GetTemplatePath())>
<cfparam name="PageNum_Recordset1" default="1">
<cfquery name="Recordset1" datasource="Cprogram">
SELECT * FROM Contacts
</cfquery>
Please help...
|