Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ASP page inside of a .CFM page..

Status
Not open for further replies.

doco

Programmer
Sep 28, 2000
32
GB
I'm trying to embed coldfusion reports in asp pages
but then I realised something ugly: we have lots of mandatory includes that are .ASP pages and we can not include an ASP page inside of a .CFM page..

I do not know how to solve it. thanks oscar
 
try cfhttp

We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.
 

You can include asp in coldfusion:

Code:
<script language="javascript" type="text/javascript" src="poll/vote_js.asp"></script>

Hope this helps.

Liark


 
that isn't exactly going to work. well, it might if all you need to do is show some content, but it uses the client to call the asp page. if there is any data that CF needs to produce the CF parts it isn't going to help. CFHTTP can get data in asp needed by CF

We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.
 
Thanks Guys i'll give this a try - very much appreciate you taking the time and trouble to help me out

Best Regards!

Oscar
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top