how can i do that when my button clicked i will open a new internet window e.g walla.com?
A:
If you're talking about about a web application you're best doing this using JavaScript
<input type="button" onclick="window.open('http://www.walla.com/')" />
Charlie
2010-04-30 08:17:41
Should use window.open to popup a new window.
Amry
2010-04-30 08:19:17
@Amry good point...will edit
Charlie
2010-04-30 08:24:28
it tells me that this event hendler (window.open('http://www.walla.com/')" ) is not in my class...anyway, how can i do it in c# code? i donwt want to touch the xaml...
2010-04-30 08:33:19
A:
Hey hi aharont , you can go for the hyper link button to make it simpler ,here is what you have to do :
<HyperlinkButton Content="Open" NavigateUri="http://www.walla.com" TargetName="_blank" />
Malcolm
2010-04-30 08:41:50