I need to display the longlistselector data in a new page when an item was selected.. im getting an error message System.Argument.Exception so plz help me to solve this issue..
my selectedindex change code..
private void OrganizationList_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
NavigationService.Navigate(new Uri("Organization_Details.xaml?selectedItem" +Organization.Name , UriKind.Relative));
}
Error:
In the navigated page, i'm jus using a text block to display my data..and the code is..
Organization org;//Class name with obj
public Organization_Details()
{
InitializeComponent();
org_name.Text = org.name;//textblock(org_name)-->needs to set the data from the b4 page..
}
Error in navigated page...