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.
嗨,我使用创建了一个新的浏览器对象
InternetExplorer myie = new SHDocVw.InternetExplorer(); 我正在尝试导航到一个页面,例如
myie.Navigate("https://myfirstsite.com/login.aspx", ref Empty, ref Empty, ref Empty, ref Empty);
现在我想为这个 myie 对象清除 sessons 和 cookie。我怎样才能清除它?
任何想法?
您需要使用 wininet.dll 来执行此操作。查看http://pastebin.com/E4V2XGbW获取一些示例。