In a iframe I set the src
to a page containing Silverlight Web Part, it doesn't generate any anchor element, but on the silverlight web part there are text we can click on and they will redirect the page to a new url.
The problem is the url always opens in the iframe instead of the parent window. I tried the following things:
<base target="_search" />
<base target="_top" />
<base target="_parent" />
inside the <head></head>
of my iframe page and without the ""
and the /
but none worked.
The Silverlight is a Sharepoint component so I could not change it or see the code to know how it open links, so I could do nothing about that.
I'd like very much to know if there are any other violent ways to force links to open in the parent window? Thanks for your help.