A cookie is a small piece of information stored by the browser that applies to a Web page. Each cookie can store up to 20 name=value; pairs called crumbs, and the cookie is always returned as a string of all the cookies that apply to the page.
This means that you must parse the string returned to find the values of individual cookies.
You can retrieve cookies for a specific URL with two methods:
Method 1:GetCookies
Method 2: Object.cookie
This means that you must parse the string returned to find the values of individual cookies.
You can retrieve cookies for a specific URL with two methods:
Method 1:GetCookies
msgbox Browser("Google").GetCookies("http://www.google.com")
Method 2: Object.cookie
strCookie = Browser("Google").Page("Google").Object.cookie
msgbox strCookie
No comments:
Post a Comment