Re: Problem setting cookie in Internet Explorer

2008-04-21 Thread sophie_newbie
On Apr 21, 4:24 pm, Mike Driscoll <[EMAIL PROTECTED]> wrote: > On Apr 21, 10:13 am, sophie_newbie <[EMAIL PROTECTED]> wrote: > > > > > Hi, > > > I'm using the python to set a cookie when a user logs in. Thing is it > > doesn't seem to be setting properly in Internet Explorer. It works > > grand in

Re: Problem setting cookie in Internet Explorer

2008-04-21 Thread Mike Driscoll
On Apr 21, 10:13 am, sophie_newbie <[EMAIL PROTECTED]> wrote: > Hi, > > I'm using the python to set a cookie when a user logs in. Thing is it > doesn't seem to be setting properly in Internet Explorer. It works > grand in Firefox. Its basically: > > c = Cookie.SimpleCookie() > > c['username'] = una

Problem setting cookie in Internet Explorer

2008-04-21 Thread sophie_newbie
Hi, I'm using the python to set a cookie when a user logs in. Thing is it doesn't seem to be setting properly in Internet Explorer. It works grand in Firefox. Its basically: c = Cookie.SimpleCookie() c['username'] = uname c['password'] = pword print c print pageContent And thats it. I've a s