mljonzs
Posts: 124
|
| Posted: 03/20/2007, 7:57 AM |
|
Does anyone know if it is doable to make a PHP page includable and then include it as a page in an ASP application?? The ASP application is the driving CodeCharge application.....
thanks!
Michelle
_________________
What does not begin WITH God, will end in failure!
|
 |
 |
wkempees
Posts: 1679
|
| Posted: 03/20/2007, 9:13 AM |
|
Wow, what is nyour intention?
From post I understand you have complete app in ASP and want to ?run? a page in PHP.
Please explain.
Walter
_________________
Origin: NL, T:GMT+1 (Forumtime +9)
CCS3/4.01.006 PhP, MySQL .Net/InMotion(Vista/XP, XAMPP)
if you liked this info PAYPAL me: http://donate.consultair.eu
|
 |
 |
mljonzs
Posts: 124
|
| Posted: 03/20/2007, 9:27 AM |
|
Hi Walter.
Yes, my application is currently in ASP/VB-Script in code charge. The requirement (which is needed by next week of course) is to allow users to view/upload images in this application. We found an application that pretty much does what we need but it is written in PHP. If we could simply have a link that users click to go to that PHP application we would be fine, but the users want to include the thumbnails in the ASP applicaiton and we don't have that page in ASP right now so we are wondering if we can somehow pull the PHP page into the ASP page by making it an includable page...
Does this help?
Michelle
_________________
What does not begin WITH God, will end in failure!
|
 |
 |
wkempees
|
| Posted: 03/20/2007, 1:06 PM |
|
Yes clears things up a bit.
As far as I understand your text, that is not possible (including PhP
straight in) but
I do not have a straight answer as to if this is possible, but as I think
anything is:
You could, in a Iframe or equal run a your PhP snippet on it's Php platform,
I think.
As is said all over thisforum, a label type HTML can contain anything.
Let us know,
Walter
"mljonzs" <mljonzs@forum.codecharge> schreef in bericht
news:246000456a0df2@news.codecharge.com...
> Does anyone know if it is doable to make a PHP page includable and then
> include
> it as a page in an ASP application?? The ASP application is the driving
> CodeCharge application.....
>
> thanks!
> Michelle
> _________________
> Happy coding!
> mljonzs
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
Benjamin Krajmalnik
|
| Posted: 03/22/2007, 11:05 AM |
|
I dson't hink you can make it an includable page since you are looking at 2
frameworks.
What I would do is place it in an iframe in your asp applicatio.
The end use will not be able to see the difference.
"mljonzs" <mljonzs@forum.codecharge> wrote in message
news:2460019793cc29@news.codecharge.com...
> Hi Walter.
>
> Yes, my application is currently in ASP/VB-Script in code charge. The
> requirement (which is needed by next week of course) is to allow users to
> view/upload images in this application. We found an application that
> pretty
> much does what we need but it is written in PHP. If we could simply have
> a
> link that users click to go to that PHP application we would be fine, but
> the
> users want to include the thumbnails in the ASP applicaiton and we don't
> have
> that page in ASP right now so we are wondering if we can somehow pull the
> PHP
> page into the ASP page by making it an includable page...
>
> Does this help?
>
> Michelle
> _________________
> Happy coding!
> mljonzs
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
mljonzs
Posts: 124
|
| Posted: 03/23/2007, 5:56 AM |
|
The iframe solution sounds like it might work for us. Can you give a rough example on what I would do (I'm not familiar with iframe and how to incorporate it).
Thanks!
Michelle
Wow! This is pretty easy. I added the iframe tag to my HTML and voila! We have our PHP page embedded in our ASP page.
Thanks to both for your input!
Michelle
_________________
What does not begin WITH God, will end in failure!
|
 |
 |
Benjamin Krajmalnik
|
| Posted: 03/25/2007, 5:55 PM |
|
At the location here you want to embed the content, simply ebed something
along the lines of:
<iframe src ="keepalive.asp" width="x" height="y"></iframe>
You can check the available paraters in any html reference. You can als do
ts dynamically by inserting a label and assigning the vaue programatically.
Just make sure the label has the html property set.
"mljonzs" <mljonzs@forum.codecharge> wrote in message
news:24603dca3daf1e@news.codecharge.com...
> The iframe solution sounds like it might work for us. Can you give a
> rough
> example on what I would do (I'm not familiar with iframe and how to
> incorporate
> it).
>
> Thanks!
> Michelle
> _________________
> Happy coding!
> mljonzs
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|