View member feedback to this tip.
This is a JavaScript QuickTip.
Recently we have converted some clients to Windows XP and had a few problems with our intranet log in page. Although "Check for newer versions of stored pages" (in the Internet Options/General/Settings) was set to "Every visit to the page," some users experienced multiple log-ins (in every frameset).
Code
The solution was very simple. Create a StartUp page, which will be your homepage, and on the load event, enter this JavaScript code:
window.location="http://yourSite
Address.nsf/FrameName?OpenFrameset";
And you're done.
MEMBER FEEDBACK TO THIS TIP
It is inefficient to do two page loads. Just have the first URL open the frameset with "&Login" at the end. This will force one login before trying to open the frameset.
-- Samir G.
Do you have comments of your own? Let us know.