zhaicheng Posted February 25, 2011 Share 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? Link to comment Share on other sites More sharing options...
PsaltyDS Posted February 25, 2011 Share 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 Link to comment Share on other sites More sharing options...
DaleHohm Posted February 25, 2011 Share 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, curl MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model Automate input type=file (Related) Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded Better Better? IE.au3 issues with Vista - Workarounds SciTe 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 Link to comment Share on other sites More sharing options...
PsaltyDS Posted February 25, 2011 Share 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 Link to comment Share on other sites More sharing options...
zhaicheng Posted March 5, 2011 Author Share Posted March 5, 2011 PsaltyDS ,DaleHohm ,I really appreciate all your kind help. Link to comment Share on other sites More sharing options...
cutyourchicken Posted August 2, 2011 Share Posted August 2, 2011 nice Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now