zhaicheng 0 Posted February 25, 2011 Is it possible to erase a session cookie like this? $Obj = _IEDocGetObj($oIE) $Obj.cookie="" My purpose is to assign a new value to this doc. But it does not work. It seems this property of ".cookie" is read only. Is that right? Share this post Link to post Share on other sites
PsaltyDS 39 Posted February 25, 2011 It's not read-only, but it is probably covered by security restrictions on how it can be changed. Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites
DaleHohm 65 Posted February 25, 2011 (edited) the cookie property is read/write, but it doesn't work the way you are thinking it does. When you read the cookie property, it returns the full set of name/value pairs for all cookies (and the cookie properties). When you write to the cookie property, it adds a new name/value pair to the cookie property. To delete a cookie, you must rewrite the name/value conbination to the cookie property with an expiration in the past. For example: $Obj.cookie = $cookie_name &= "=; expires=Thu, 01-Jan-1970 00:00:01 GMT" Dale Edited February 25, 2011 by DaleHohm Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curlMSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object modelAutomate input type=file (Related)Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better?IE.au3 issues with Vista - WorkaroundsSciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble Share this post Link to post Share on other sites
PsaltyDS 39 Posted February 25, 2011 Ahh, so! Thanks for the clarification, Dale! Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites
zhaicheng 0 Posted March 5, 2011 PsaltyDS ,DaleHohm ,I really appreciate all your kind help. Share this post Link to post Share on other sites