Rob Segal
Rob Segal

Reputation: 7625

Calling Server.Execute on .NET .aspx page from classic ASP page

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.

Upvotes: 1

Views: 1453

Answers (1)

Thomas Kjørnes
Thomas Kjørnes

Reputation: 1927

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

Upvotes: 2

Related Questions