NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: Skip Williams 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
-
Not a lot to go on Skip.
Can you duplicate in any of the examples?
Which version of IE?
cheers
Bruce
-
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
-
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
-
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