WebBrowserTask webbrowsertask = new WebBrowserTask();
webbrowsertask.Uri = new Uri("http://johndoe/index.php?dsa=51",UriKind.Absolute);
webbrowsertask.Show();
NavigationService.Navigate(new Uri("Mainpage.xaml",UriKind.RelativeOrAbsolute));
webbrowsertask.Show(); is executing this code and opens browser I dont want to open browser , I just want to execute this code(got to this url , because i want this parameters to be sent in my site/database) are there any other ways ?