Lange Texte von *.odt in *.html

In meinem Flashmenü soll das file Einwohner.xhtml (direkt aus OpenOffice)
("Einwohner",_getURL,'Einwohner.xhtml','mainFrame');
im mainFrame geöffnet werden.

der Quellcode von Einwohner.xhtml:

PHP:
<?xml version="1.0" encoding="utf-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title /><meta name="generator" content="StarOffice/OpenOffice.org XSLT (http://xml.openoffice.org/sx2ml)" /><meta name="created" content="2006-10-28T17:25:07" /><meta name="changed" content="2006-10-28T21:06:37" /><base href="." /><style type="text/css">
	@page { size: 20.999cm 29.699cm; margin-top: 2cm; margin-bottom: 2cm; margin-left: 2cm; margin-right: 2cm }
	table { border-collapse:collapse; border-spacing:0; empty-cells:show }
	td, th { vertical-align:top; }
	h1, h2, h3, h4, h5, h6 { clear:both }
	ol, ul { padding:0; }
	* { margin:0; }
	*.P1 { color:#000000; font-family:'Times New Roman'; font-size:12pt; margin-top:0cm; margin-bottom:0cm; font-weight:bold; }
	*.P2 { color:#000000; font-family:'Times New Roman'; font-size:12pt; margin-top:0cm; margin-bottom:0cm; }
	*.P3 { color:#000000; font-family:'Times New Roman'; font-size:12pt; margin-top:0cm; margin-bottom:0cm; font-weight:normal; }
	*.PreformattedText { color:#000000; font-family:'Courier New'; font-size:10pt; margin-top:0cm; margin-bottom:0cm; }
	*.Standard { color:#000000; font-family:'Times New Roman'; font-size:12pt; }
	.Stil1 {color: #FFFFFF}
body {
	background-color: #000000;
}
</style></head><body dir="ltr"><p class="P1 Stil1">EINWOHNER </p><p class="P2 Stil1">Aktuell leben in unserem Dorf 153 Menschen, deren Durchschnittsalter bei  .... Jahren liegt. Obwohl in den letzten Jahren ein großer Wandel stattgefunden hat und immer mehr Bauern ihre Landwirtschaft aufgegeben haben, ..</p><p class="P1 Stil1"> </p><p class="P1 Stil1">Menschen: </p><p class="P3 Stil1">Erwachsene: </p><p class="P3 Stil1">Kinder: </p><p class="P1 Stil1"> </p><p class="P1 Stil1">Kühe: </p><p class="P1 Stil1"> </p><p class="P1 Stil1">Schweine: </p><p class="P1 Stil1"> </p><p class="P1 Stil1">Schafe: </p><p class="P2 Stil1"> </p><p class="P2 Stil1"> </p><p class="P2 Stil1">Nun ist es soweit </p>
	</body>
</html>


der Internetexplorer frägt ob man Speichern will oder auch öffnen will. Wenn man öffnen wählt, dann wird die Textdatei geöffnet aber nicht im mainFrame, sondern in nem blank.

Mit dem Firefox geht alles aber perfekt!!

...ach ja und der background ist leider nur bis zur letzten textzeile schwarz!
 
Ändere mal die Dateiendung .xhtml in .html um und vervollständige das title-Element des Dokuments:

HTML:
<!-- aus -->
<title />

<!-- wird -->
<title>Seitentitel</title>
Ansonsten wird bei mir der komplette Dokumentkörper schwarz dargestellt.
 
Zurück