PDA

Click to See Complete Forum and Search --> : [RESOLVED] External link


peteshir
Feb 1st, 2010, 12:38 PM
I am creating a silverlight 3 app and I need to put a button on my page that when clicked will go to a link outside my app.

Does anyone know how to do this.

RobDog888
Feb 1st, 2010, 05:54 PM
Use a Hyperlink button

<HyperlinkButton
Content="External Link"
NavigateUri="http://www.vbforums.com/"
TargetName="_blank" />


Change the Target to "_self" to have it open in the same window otherwise as is for a new window.[/color]

peteshir
Feb 1st, 2010, 10:37 PM
Thanks. Worked well.