I would like to load a website in an iframe in my own site.
I am using wicket 6. This is what I have tried so far:
RedirectPage page = new RedirectPage ( link );
InlineFrame frame = new InlineFrame ("myFrame", page );
add (frame);
Works in every browser except Internet Explorer. Is there another better way to load the website? Incidentally it might solve my problem with Explorer which I'm guessing has something to do with the URL's parameter enconding.