---
title: "Page Navigation in Windows Phone 8.1"  
description: "Page Navigation in Windows Phone 8.1"  
author: "Royce Roy"  
published: 2015-04-23  
updated: 2015-04-23  
canonical: https://www.mindstick.com/forum/23127/page-navigation-in-windows-phone-8-1  
category: "windows phone"  
tags: ["c#", "windows phone"]  
reading_time: 1 minute  

---

# Page Navigation in Windows Phone 8.1

Coming from [Windows](https://www.mindstick.com/articles/311752/how-to-install-and-use-the-google-wifi-software-on-a-windows-or-mac-computer) [Phone](https://www.mindstick.com/articles/23411/the-most-effective-method-to-find-the-perfect-small-business-phone-system-for-your-business) 8 I [never](https://yourviews.mindstick.com/view/290/zoos-prisons-for-beings-who-have-never-committed-a-crime) thought there will be a lot of changes done to the Windows Phone 8.1 [code](https://yourviews.mindstick.com/view/85458/alan-turing-the-mastermind-behind-cracking-the-enigma-code-during-world-war-ii). Basically I'm just wondering how to do [page](https://www.mindstick.com/articles/13031/why-to-make-a-wikipedia-page) [navigation](https://www.mindstick.com/blog/62/different-navigation-in-asp-dot-net) just like how you would do it on Windows Phone 8. To do that You would [add](https://www.mindstick.com/forum/12983/add-address-in-textbox-when-page-is-load-and-if-i-search-address-in-textbox-show-in-map-by-javascript):\
NavigationService.Navigate(new [Uri](https://www.mindstick.com/interview/271/what-is-the-difference-between-url-and-uri)("/SecondPage.xaml", UriKind.Relative));But that code doesn't work for Windows Phone 8.1. Can someone please help me with this. If possible provide any [links](https://www.mindstick.com/blog/415/css3-links) or [documentation](https://answers.mindstick.com/qa/30462/what-is-documentation) on all the NEW WINDIWS PHONE 8.1 methods.

## Replies

### Reply by Anonymous User

In Windows Phone 8.1, \
Page Navigation method is:\

```
Frame.Navigate(typeof(SecondPage), param);
```

or\

```
Frame.Navigate(typeof(SecondPage));
```


---

Original Source: https://www.mindstick.com/forum/23127/page-navigation-in-windows-phone-8-1

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
