我已經寫在VB.NET以下控制檯應用程序:InternetExplorer.Application對象和cookie的容器
Sub Main()
Dim ie As Object = CreateObject("InternetExplorer.Application")
ie.Visible = True
ie.Navigate2("http://localhost:4631/Default.aspx")
End Sub
此程序使用InternetExplorer.Application自動化對象,推出一個IE窗口和瀏覽特定的URL。我遇到的問題是,即使我啓動應用程序的多個實例,使用此方法創建的IE窗口都共享同一個cookie容器。是否有任何參數可以用來指定爲每個窗口創建不同的cookie容器?
這是網頁我用來測試餅乾:
<%@ Page Language="C#" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
// Store something into the session in order to create the cookie
Session["foo"] "bar";
Response.Write(Session.SessionID);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
<form id="form1" runat="server"></form>
</body>
</html>