I'd like to load a different HTML file than the index.html on startup in my PhoneGap 1.7 project for Windows Phone. Unfortunately I can't seem to find where I can change that. Any help?
Cheers
|
I'd like to load a different HTML file than the index.html on startup in my PhoneGap 1.7 project for Windows Phone. Unfortunately I can't seem to find where I can change that. Any help? Cheers |
|||
|
|
|
Your MainPage.xaml.cs contains the MainPage constructor. Within this constructor you need to change the startPageUri property of the PGView object as follows:
As you can see I've created a new Uri pointing to a file called test.html in the www directory. Change this string to whatever value you wish. |
|||
|
|
|
Open WMAppManifest.xml file, look for the tag and then and change the attribute NavigationPage to the page you want to navigation when the application starts. |
|||
|
|