In my windows store application , i am passing some parameters between two pages like this:
Window.Current.Content = new page2(a1,a2,a3);
and accessing that parameters in page2 like this :
public page2(string a1, string a2, string a3)
{this.InitializeComponent();}
everything works fine, but when i am trying to navigate from page2 to another page , a null exception is occurring. what is the problem ??