As far as I am aware there is no easy way of including an aspx file within a cfm file due to how the server processes these files.
One possible solution is to use CFHTTP to retrieve the http content from the .ASPX file and display this in the cfm file.
To do this you would add the following to the CFM file:
<cfhttp method="get" url="http://full Url to aspx file"></cfhttp>
<cfoutput>#cfhttp.fileContent#</cfoutput>
Hope this helps.
__________________
Brad
Web Bound - Web sites that work
www.webbound.com.au
Check us out for all your internet needs
|