Can you include an ASP.Net page in an ASP page? Or is there a way, besides frames or Iframes, to execute the ASP.Net page from with in the ASP page?
I've got a menu system that uses custom ASP.Net components that would just be a bear to write out in ASP.
TIA
wardbekker
3:36 pm on Jan 29, 2004 (gmt 0)
You could do a internal http request to an aspx page with that component on it and output the response with the asp page. Dirty, but it works if there are no postbacks to the aspx page.
wackal
9:13 pm on Jan 30, 2004 (gmt 0)
I'm not too familiar with .NET, but can't you include regular ASP code in a .NET page? try doing the reverse of what you were doing, try to include asp code in a .NET page