Reputation: 5157
I'm trying to develop a Signup/Verify Email process. The user will
This works, however the user ends up with two browsers open. Ideally when the user clicks on the email link, I'd like for the Verified.aspx page to be opened in the same window that Signup.aspx was in.
I've tried using but it still opens in different windows
Upvotes: 0
Views: 98
Reputation: 943142
You can't. There is no way to reference a specific window from a "page" delivered via email.
The only time a specific window can be referenced is when that window was opened from the same site as the link targeting it.
Upvotes: 2