That sounds strange. I did not experience problems like this. After changing
the configuration of apache, everything worked fine as expected, only a bit
slower and with the messages in the error.log.

Perhaps you should check your HTML source...

Well, the HTML-Code looks as innocent as:

in file index.html

<frame src="inhalt_ob.html" name="inhaltsnavigation" frameborder="0" scrolling="No">
<frame src="scripts/page0.ttml" name="inhaltsseite" frameborder="0" scrolling="Auto">

in file inhalt_ob.html a link is shown as:

<a href="scripts/page0.ttml#A" target="inhaltsseite">A</a>

and finally page0.ttml is build dynamically:

set oldchar ""
if {[Connect]} {
set res [Query "SELECT DISTINCT ix.bezeichnung FROM stindex ix"]
db disconnect
# Start HTML-Ausgabe
include ../header.html
cgi_division {
foreach index $res {
set index [join $index]
set char [string index $index 0]
if {![string equal -nocase $oldchar $char]} {
hputs [cgi_anchor_name [string toupper $char]]
set oldchar $char
}
set quotedIndex [::ncgi::encode $index]
hputs [cgi_url $index page1.ttml?bezeichnung=$quotedIndex]
cgi_br
}
}
include ../footer.html
# Ende HTML-Ausgabe
}

So far, I can't replicate this behavior with IE5.5, only Mozilla seems to produce this?

Regards Oliver



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

Reply via email to