What I’m trying to achieve is provide users with a personalised ASP.net routed URL that they can add to their phone’s home screen. When they tap the icon it opens their personalised page PWA standalone looking almost like a native app.
For example they go to example.com/myaccount/myuserid and add it to their home page. That puts the icon on their phone. When they tap the icon they get their own data in the myaccount page.
Except I can’t figure out how to do that. Much research followed by much trial and error has failed to find a way. The web forms page I want them to get to is, say, example.com/myaccount/default.aspx and default.aspx sees Page.RouteData.Values("userid") = “myuserid”
Any ideas anyone?