I'm trying to pass two variables from one page to the next. How would I go about doing this?
Put this code in first page:
WinJS.Navigation.navigate("/pages/secondpage.html", yourvalue);
Then in second page to retrive the data use:
ready: function (element, options) {
//your data yourvalue is inside options parametr
}