ASP in an ASP.net Document?

K

K

Is it possible to use classic ASP inside an ASP.net document? Using SSI to
call the ASP page?

I am trying to modify an ASP.net site (Citrix Web Interface) by adding some
features, but I don't know ASP.net well enough, so was going to do it in
classic ASP and call it with SSI into the right place in the document.
 
M

Mischa Kroon

K said:
Is it possible to use classic ASP inside an ASP.net document? Using SSI
to call the ASP page?

I am trying to modify an ASP.net site (Citrix Web Interface) by adding
some features, but I don't know ASP.net well enough, so was going to do it
in classic ASP and call it with SSI into the right place in the document.

If you want a simple solution then the best you can do is use an Iframe.
In the Iframe reference an .asp page.

There will still be some communication problems between the 2 though.
They can't read each others session variables.

But this might get the job done.
 
K

K

Is it possible to use classic ASP inside an ASP.net document? Using SSI
If you want a simple solution then the best you can do is use an Iframe.
In the Iframe reference an .asp page.

There will still be some communication problems between the 2 though.
They can't read each others session variables.

But this might get the job done.

Thank you

I don't need data transfer between the two at all so that sound like it will
work fine for me.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top