axWebrower 自定义证书 如何处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axWebrower 自定义证书 如何处理相关的知识,希望对你有一定的参考价值。
private void timer1_Tick(object sender, EventArgs e) { int iHandle = FindWindow(null, "安全警报"); if (iHandle != 0) { SetForegroundWindow(iHandle); System.Windows.Forms.SendKeys.SendWait("Y%"); } iHandle = FindWindow(null, "脚本错误"); if (iHandle != 0) { SetForegroundWindow(iHandle); System.Windows.Forms.SendKeys.SendWait("Y%"); } iHandle = FindWindow(null, "Web 浏览器"); if (iHandle != 0) { SetForegroundWindow(iHandle); System.Windows.Forms.SendKeys.SendWait("{ENTER}"); } }
先贴代码。
吐槽某大公司的大系统。登个陆要跳单点,单点要要过五关斩六将。
另外,前面还需要引入dll,开头部分引入
[DllImport("user32.dll")] public extern static int FindWindow(string lpclassname, string lpwindowname); [DllImport("user32.dll")] public extern static void SetForegroundWindow(int handle);
以上是关于axWebrower 自定义证书 如何处理的主要内容,如果未能解决你的问题,请参考以下文章