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.
Printable View
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.
Use a Hyperlink button
Change the Target to "_self" to have it open in the same window otherwise as is for a new window.[/color]Code:<HyperlinkButton
Content="External Link"
NavigateUri="http://www.vbforums.com/"
TargetName="_blank" />
Thanks. Worked well.