Forum Moderators: open

Message Too Old, No Replies

IE6 does not display HTML files on some computers

browser does not display HTML files

         

ahmetolgun

8:56 am on May 21, 2004 (gmt 0)

10+ Year Member



Hi to everybody,

I have found this site very useful and interesting. I have a problem related to ie6. My site uses https. Web server sends response to browser succesfully, but browser displays a white page. when i want to see source of HTML file that server sent to browser, i can not see any errors. Whole HTML code is generated.

There are JavaScripts in page. A part of whole generated HTML file obtained via view source is attached.

Futhermore, i also have ie6. I can see page. I spent too much time to find possible causes. But i could not find any solutions.

I would appreciate your helps. Thanks.

***********************

<html>
<head>
<Title>Some Title</Title>
<meta name="description" content="Finansbank Web Site">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1254">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-9">
<meta name="author" content="Crema İletişim">
<SCRIPT language=JavaScript src="/images/style.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript src="/images/script.js" type=text/javascript></SCRIPT>
<script>
if (window.name!= 'win1' && window.name!= 'winalt') {
document.location.href='http://www.example.com';
}
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#08459C" vlink="#08459C" alink="#08459C">
<style>
.buton {
BORDER-RIGHT: #104a7b 1px solid; BORDER-TOP: #afc4d5 1px solid; BACKGROUND: #DEE4F2; BORDER-LEFT: #afc4d5 1px solid; CURSOR: hand; COLOR: #0D469C; BORDER-BOTTOM: #104a7b 1px solid; HEIGHT: 20px; TEXT-DECORATION: none
; font-family: Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; clip: rect( ); width: 20px
}
.sanalback { background-image: url(/images/sanalback.gif); text-align: center; vertical-align: middle}
.str { background-image: none }
.std { background-image: none; vertical-align: middle; padding-right: 1px; padding-left: 1px;; background-color: #FFFFFF; text-align: center}
.std2 { background-image: none;; background-color: #003399; padding-right: 1px; padding-left: 1px}
</style>
<SCRIPT language=JavaScript type=text/javascript>
function sk_restore(){
var obj;
if ((obj=MM_findObj('VKEYBOARD'))!=null)
{
if (obj.style) {
obj=obj.style;
if(obj.visibility=='hidden'){
return;
}else{
sk_init(getFocusedEdit(), 'show');
return;
}
}
}
}
<script language="JavaScript">
<!--
document.frm.USER.focus();
document.frm.PASSWORD.value='';

var NS4 = (document.layers)? 1 : 0;
var IE4 = (document.all)? 1 : 0;

var lang = "";
if (IE4) {
document.frm.LANGUAGE.value = window.navigator.userLanguage;
}
else {
document.frm.LANGUAGE.value = 'tr';
}
// -->

</script>
</body>

</html>

[edited by: BlobFisk at 9:39 am (utc) on May 21, 2004]
[edit reason] Examplified URLs [/edit]

BlobFisk

9:43 am on May 21, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to WebmasterWorld, ahmetolgun!

The 'View Source' code that you have posted above does not seem to have any content. Unless there is a script writing content out outside of the code above, this may explain why you get a blank page... There is no content!

If you can see something on IE6 it would indicate to me that it is a scripting error. Are there any script errors showing?

Red_Eye

9:51 am on May 21, 2004 (gmt 0)

10+ Year Member



You say that you are using https and you say that you can see the site in some IE6 browsers but not others. I have found a similar problem It could be related to the encryption level of IE6, if it is not 128 some web pages will not show. On the machines that do not display the page go to help>about you should see what the encryption level if it is not 128 bit this culd be the problem.

ahmetolgun

10:46 am on May 21, 2004 (gmt 0)

10+ Year Member



Hi,

i deleted body part, in deen there are tables there. I could not paste whole html page because of maximum post size restrictions. The clients explorer is also ie6.0 I know that if there are two different security levels. For instance server 128-bit and client 40-bit. Then they will negatiate at 40-bit.

pixelkat

7:51 pm on Jun 2, 2004 (gmt 0)

10+ Year Member



if your code is exactly as posted, did you know you have an open <script> tag? note my comment about midway down the code.

<SCRIPT language=JavaScript type=text/javascript>
function sk_restore(){
var obj;
if ((obj=MM_findObj('VKEYBOARD'))!=null)
{
if (obj.style) {
obj=obj.style;
if(obj.visibility=='hidden'){
return;
}else{
sk_init(getFocusedEdit(), 'show');
return;
}
}
}
} /*there needs to be a closing script tag here*/
<script language="JavaScript">
<!--
document.frm.USER.focus();
document.frm.PASSWORD.value='';

var NS4 = (document.layers)? 1 : 0;
var IE4 = (document.all)? 1 : 0;

var lang = "";
if (IE4) {
document.frm.LANGUAGE.value = window.navigator.userLanguage;
}
else {
document.frm.LANGUAGE.value = 'tr';
}
// -->

</script>

cheers,
kat