NetTalk Central

Author Topic: Only IE returns to login page instead of going back to browse  (Read 2305 times)

Skip Williams

  • Jr. Member
  • **
  • Posts: 53
    • View Profile
    • Email
Only IE returns to login page instead of going back to browse
« on: September 01, 2011, 04:19:02 AM »
All other browsers work fine and go back to the proper page when the form close button is pressed.  IE however goes back to the login page instead..but just on this one form.  Some other forms work ok and return properly.

Any ideas on what may be going on with IE?  I have fiddled with some of the security settings, etc, but no joy. ... using 8.8658 and nt 5.32

Thanks

Skip

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11186
    • View Profile
Re: Only IE returns to login page instead of going back to browse
« Reply #1 on: September 01, 2011, 05:02:45 AM »
Not a lot to go on Skip.
Can you duplicate in any of the examples?
Which version of IE?

cheers
Bruce

Skip Williams

  • Jr. Member
  • **
  • Posts: 53
    • View Profile
    • Email
Re: Only IE returns to login page instead of going back to browse
« Reply #2 on: September 01, 2011, 06:55:36 AM »
Hey Bruce,

Yep, Its not a lot to go on.  I havent tried to duplicate it in any of the examples, but will see if i can find one that comes close.

I am using ie8 on win7. 

I am going to try it on some other versions of ie and see if that makes a difference.  So far no problems on iphone, android, firefox, chrome, or safari.  It all works fine there.  I was hoping it would just be some quirky setting i had on ie.

I'll keep playing with and let you know if i find anything...

Thanks

Skip



Skip Williams

  • Jr. Member
  • **
  • Posts: 53
    • View Profile
    • Email
Re: Only IE returns to login page instead of going back to browse
« Reply #3 on: September 01, 2011, 08:40:14 AM »
hummm...

loc:formaction on that particular page is getting set to 'loginform' when ie is used but 'indexpage' when any other browser is used.

Skip

Skip Williams

  • Jr. Member
  • **
  • Posts: 53
    • View Profile
    • Email
Re: Only IE returns to login page instead of going back to browse
« Reply #4 on: September 01, 2011, 09:00:30 AM »
I fixed it by adding...

        loc:formaction = 'indexpage'
        loc:formactioncancel = loc:formaction

at the end of the setformaction routine.  It looks like the

 If loc:formaction = ''
    loc:formaction = lower(p_web.getPageName(p_web.RequestReferer))
  End

was returning loginform for IE and Indexpage for all other browsers. I'll dig into that later, but for now, all is working just fine.

Skip