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
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users