Click here to Skip to main content
15,881,757 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i have a datagrid and i retrived table to datagrid from database using wcf service.
and i have hyperlink in the datagrid when i clicked hyperlink, have to navigate to next page can u tell me code for this...
Posted

Have a look at the Silverlight Navigation Overview[^].

There is a video tutorial on the navigation framework right here[^].
This discusses[^] the framework as well.
 
Share this answer
 
Comments
Espen Harlinn 28-Jan-12 8:35am    
Good links, my 5!
Abhinav S 28-Jan-12 10:00am    
Thank you Espen.
Here is simple way to navigate from page to page.
C#
HtmlPage.Window.Navigate(new Uri("http://mysite/default.aspx"));
 
Share this answer
 
This should do,

System.Windows.Browser.HtmlPage.Navigate("URL");

But a simple google search would have given you the answer!
 
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