Click here to Skip to main content
15,949,741 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am building my first windows phone 7 application, and I am given an error - Invalid Uri Format.
this is the code:

C#
string site = textBox1.Text;
            Uri u = new Uri("www.google.com", UriKind.Absolute);
            webBrowser1.Navigate(u);


I am following directions.
Please help.
Posted

1 solution

this.NavigationServer.Navigate(new Uri("/yourpage.xaml",UriKind.Relative));
C#

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900