NetTalk Central

Author Topic: remember password  (Read 2146 times)

agustinh2000

  • Jr. Member
  • **
  • Posts: 86
    • View Profile
    • Email
remember password
« on: September 09, 2013, 09:34:36 AM »
Hi Bruce, when I remember username and password I can not delete the cookie if the option remember = 0

the sentence I use is p_web.DeleteCookie ('Loc__Usr')

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11171
    • View Profile
Re: remember password
« Reply #1 on: September 09, 2013, 09:25:30 PM »
Hi Augustin,

I think post an example - your description contains insufficient information for a meaningful answer.

cheers
Bruce

markster

  • Full Member
  • ***
  • Posts: 204
    • View Profile
    • Email
Re: remember password
« Reply #2 on: September 10, 2013, 07:19:23 AM »
I found this same problem early this year (don't remember what version I was on at the time). After some research and testing, I found that I had to set the cookies first to null, ie xxx.SetCookie('somecookie',''), and set the session value to null, ie xxx.SSV('somecookie','') to effectively delete them.

Mark

agustinh2000

  • Jr. Member
  • **
  • Posts: 86
    • View Profile
    • Email
Re: remember password
« Reply #3 on: September 10, 2013, 09:14:53 AM »
thanks Mark, I will try