P
Pat Garard
G'Day All,
I have a set of custom 'Outlook Today' Pages for MS (Office) Outlook.
Based on the old MSNBC "Outlook Today", they work very well with
Outlook 2003 installed.
With Outlook 2007 installed the 'default' page kind of 'stalls'.
The Pages work fine when opened in IE7 directly.
However in Outlook it begins to load and then just 'sits' with a blank page.
View Source SHOWS a blank page!!
"<HTML></HTML> " - in About_Blank.txt
--
Regards,
Pat Garard
Melbourne, Australia
_______________________
===============================
default.htm - Outlook points here ....
<html>
<head>
<title>Customised Personal Update</title>
</head>
<frameset rows=*>
<frame src="Online.htm" scrolling=yes>
</frameset>
===============================
online.htm - attempts to download a logo from my ISP ...
- loads one of two alternative pages depending on success
<html>
<head>
<title>MSNBC Online Test</title>
<script language=javascript>
function Online() {
location.href="msnbc_o2.htm";
}
function Offline() {
location.href="msnbc_o.htm";
}
</script>
</head>
<body bgcolor=white>
<img src=http://www.bigpond.com/res/images/header/bp_logo_on.gif
onload=Online(); onerror=Offline();>
</body>
</html>
===============================
I have a set of custom 'Outlook Today' Pages for MS (Office) Outlook.
Based on the old MSNBC "Outlook Today", they work very well with
Outlook 2003 installed.
With Outlook 2007 installed the 'default' page kind of 'stalls'.
The Pages work fine when opened in IE7 directly.
However in Outlook it begins to load and then just 'sits' with a blank page.
View Source SHOWS a blank page!!
"<HTML></HTML> " - in About_Blank.txt
--
Regards,
Pat Garard
Melbourne, Australia
_______________________
===============================
default.htm - Outlook points here ....
<html>
<head>
<title>Customised Personal Update</title>
</head>
<frameset rows=*>
<frame src="Online.htm" scrolling=yes>
</frameset>
===============================
online.htm - attempts to download a logo from my ISP ...
- loads one of two alternative pages depending on success
<html>
<head>
<title>MSNBC Online Test</title>
<script language=javascript>
function Online() {
location.href="msnbc_o2.htm";
}
function Offline() {
location.href="msnbc_o.htm";
}
</script>
</head>
<body bgcolor=white>
<img src=http://www.bigpond.com/res/images/header/bp_logo_on.gif
onload=Online(); onerror=Offline();>
</body>
</html>
===============================