One solution would be to use JavaScript in your logon page to ensure that it's
not loaded in a frame. Maybe something like:

<html>
    <head>
        <script type="text/javascript" language="javascript">
        <!--
            if (window != top) top.location.href = location.href;
        //-->
        </script>
        ...
    </head>
    ...
</html>

Quoting John MccLain <[EMAIL PROTECTED]>:

> Is there any way to specify that a redirect go into another frame???
> We have an outer frame holding a menu, then an inner frame that loads our
> pages and each page has a security header.
> If the session times out, we get redirected (via our security header) to our
> logon page - BUT, our menu still remains
> rendered. What we want is, if our session  has timed out (all vars are
> empty), then we want to redirect to our logon page into the TOP frame in the
> frameset

-- 
Kris Schneider <mailto:[EMAIL PROTECTED]>
D.O.Tech       <http://www.dotech.com/>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to