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.
我想在没有看到页面的情况下在网络上进行自动登录(它必须对用户透明)。所有人都必须使用c#。
我想也许有了 watin 我可以做到。我可以登录到一个网络看到它,但我想知道我是否可以在没有看到它的情况下做到这一点。
有任何想法吗?
谢谢
您可以使用以下命令隐藏IE 窗口:
Settings.Instance.MakeNewIeInstanceVisible = false; ie = new IE(true);
或者
ie = new IE(true); ie.ShowWindow(NativeMethods.WindowShowStyle.Hide);
.
您可以使用以下方法最小化IE 窗口:
ie = new IE(true); ie.ShowWindow(NativeMethods.WindowShowStyle.Minimize);