vemuri revathi
unread,Sep 6, 2012, 1:40:30 AM9/6/12Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to v8-u...@googlegroups.com
hii friends,
i need your help, i am trying to create an example app which uses combobox, i have entered the values/combobox items what i want is when i click on a particular year it should be redirected to a particular page.
i have used the following code
if(yy.SelectedItem.ToString()=="1960||1972||1984||1996||2008")
{
this.Frame.Navigate(typeof(Rabbit));
}
or 2nd type is the correct way
if(yy.SelectedItem.ToString()=="{1960,1972,1984,1996,2008}")
{
this.Frame.Navigate(typeof(Rabbit));
}
what i wnat is if we click on any of the above years it should navigate to the following page given....There are no errors ,can you please tell me is this a correct format in declaring the values..
thanks in advance