Here is the situation: I have an ASP.NET main site, with a Magento buy-online section. The .NET site contains the header with menus generated dynamically, and I have to reuse the same header in the Magento side of the site.
I can't just copy the HTML in a static block, since the menu items are generated dynamically from a Database. I tried using an Iframe, but I'm using superfish for the menus, so when the sub-menus show up they don't fit in the iframe, so we don't see the whole menu. So I tried using the php include, with both the following syntaxes: include("/GetHeader.aspx?l=en"); and include("http://siteurl/GetHeader.aspx?l=en"); but both fail to show anything, the page is just blank.
My php.ini is set to show errors and warnings and both allow_url_fopen and allow_url_include are set to On
Any idea on how to achieve what I'm trying to do?
Thank you