Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 windows phone 7.1 中制作一个测试应用程序并且我在我的应用程序中使用 webBrowser 控件并提供外部网站的 url。用户在该表单中输入登录详细信息,然后按提交按钮。我如何知道用户已登录。
谢谢,
您可以使用 WebBrowser.Navigating 事件跟踪用户被重定向到的 URL。检查 NavigatingEventArgs.Uri 属性。
然后,您只需要计算出登录页面重定向到的页面,如果用户正在导航到该页面,则他们已成功登录。