| Author |
Message |
JudoDan
Joined: 19 Apr 2007 Posts: 2
|
Posted: Thu Apr 19, 2007 1:29 am Post subject: Does outlook bar have to be in a frame? |
|
|
I'm looking at the standard version and considering paying for it (because it's well worth my time). However, does the outlook bar have to be in a frame?
If not, is there a sample of using it in a regular non-frame environment?
Thanks for any help |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Mon Apr 23, 2007 9:36 am Post subject: |
|
|
| Yes, it should be placed into a frame (regular <FRAME> or <IFRAME>). No other ways of using it are currently supported. |
|
| Back to top |
|
 |
JudoDan
Joined: 19 Apr 2007 Posts: 2
|
Posted: Mon Apr 23, 2007 5:24 pm Post subject: |
|
|
Understood.
The problem I have is this:
I'm wanting to use the outlookbar in a secure site. When the session times out, the main page goes back to the login screen. This is a problem because the main page changes, but the outlookbar stays (because it's in a different frame).
Is there a way I can send the browser back to the login page in the whole browser (get rid of all the frames)?
I know this isn't really an outlookbar question, but I'm guessing people here may have had that problem before... |
|
| Back to top |
|
 |
AlexKunin Developer
Joined: 03 Jan 2003 Posts: 1191
|
Posted: Mon Apr 23, 2007 5:40 pm Post subject: |
|
|
| Code: | <script type="text/javascript">
top.location.href = 'login.html';
</script> |
|
|
| Back to top |
|
 |
|