You can't for example, <cfinclude the aspx files... but if you insist on loading them into your .cfm files, there are several methods that MIGHT work depending on the aspx files themselves.
Loading them into an iframe / frame would work just fine and it would be easy. It will also safely preserve their internal functionality (posts and gets will not need to be redirected) You COULD (and I'm only bringing it up as an example, I don't recommend it) use CFHTTP to essentially scrape the aspx pages and include their content. This may however require you to dynamically alter their functionality during the scrape to make sure their actions get mapped to the right location. For example, it may break links or form posts contained in the aspx file if you include it using this technique. HTH -- Alan Rother Adobe Certified Advanced ColdFusion MX 7 Developer Manager, Phoenix Cold Fusion User Group, AZCFUG.org ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313728 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

