views:

60

answers:

1

Is it possible to call Server.Execute with a .NET .aspx page from classic ASP? My tests so far have indicated this is not working but I'm still somewhat convinced there is a way.

+1  A: 

Why on earth would you want that?

More or less guessing what you want to do: If you need to transparently display output from an .aspx in your .asp, you can always do this:

  • use ServerXMLHTTP to execute the .aspx page
  • read headers and content from http response
  • write headers and content back out
thomask
I am going into look into some of those. I had no idea about any of those possibilities.
Rob Segal