I generally don't like Iframes, but I have a situation where I might need to include a JSP page inside an ASP page.
Does anyone know if it's possible to include a JSP as an iframe on an ASP page?
bakedjake
3:55 pm on Dec 29, 2004 (gmt 0)
I don't see why not. Since iframes are handled by the client browser (it's a seperate HTTP request), there should be no reason you couldn't include anything you wanted in an iframe, so long as it's accessible normally.
Xoc
4:41 am on Dec 31, 2004 (gmt 0)
Should work just fine. I've got an aspx page (doing a .NET DataGrid) in an iframe within a classic asp page.
txbakers
5:20 pm on Dec 31, 2004 (gmt 0)
Yeah I did get it to work. I forgot that the JSP page needed a parameter so the ASP page also needs the parameter. Then it worked nicely.
But, since it's an IE only thing I might have to deep six the IFRAME idea.
bakedjake
5:22 pm on Dec 31, 2004 (gmt 0)
iframe's work on every browser - I'm fairly certain of it.