Hello,
I have build up a page using FCK Editor. My problem is that as far as I include <!-- #INCLUDE file="/fckeditor.asp" --> all german Umlauts like ä,ö,ü on the Page are displayed like "ö"
Only Umlauts in FCK Editor box are displayed in the right way.
Do anyone has an idea
Thanks
I have build up a page using FCK Editor. My problem is that as far as I include <!-- #INCLUDE file="/fckeditor.asp" --> all german Umlauts like ä,ö,ü on the Page are displayed like "ö"
Only Umlauts in FCK Editor box are displayed in the right way.
Do anyone has an idea
Thanks

Re: German Umlaut
Just add this in your fckconfig.js:
-->FCKConfig.IncludeLatinEntities = false ;
Viel Spass!
-nat
Re: German Umlaut
this work-around did not work out since this in for the FCK Editor BOX only. My problem is that text on the page (but not in the FCK Editor box) is displayed wrong once I include the FCK Editor ASP File
Any idea for this??
Re: German Umlaut
Re: German Umlaut
<!-- #INCLUDE file="../Edit/FCKeditor/fckeditor.asp" --> <html> <head> <title>Forum SW Elmpt</title> <meta name="description" content="Sportverein Schwarz-Weiß Elmpt - Fussballabteilung mit 75 jähriger Vereinstradition"> <meta name="keywords" content="SW, Elmpt, 1926, SW Elmpt 1926, Fussball, Senioren, Jugend, Abteilung, Sportplatz, AH, Alte Herren, Kreisliga, Bezirksliga, Bestengruppe, Verein, Sport, Jugendfussball, Jugendabteilung, Vorstand"> <link rel="SHORTCUT ICON" href="../favicon.ico"> <meta name="robots" content="index, follow"> <meta name="revisit-after" content="7 days"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="publisher" content="Sportverein Schwarz-Weiß Elmpt 1926 e.V."> <meta name="author" content="Joerg Gohlke"> <LINK REL="stylesheet" TYPE="text/css" HREF="../style.css"> </head> <script type="text/javascript"> <!-- function submitForm(s) { if(document.Kontakt.Ueberschrift.value == "") { alert("Bitte gebe eine Überschrift ein"); document.Kontakt.Ueberschrift.focus(); return false; } if(document.Kontakt.Ueberschrift.value == "max. 100 Zeichen") { alert("Bitte gebe eine Überschrift ein"); document.Kontakt.Ueberschrift.focus(); return false; } s.value = "Daten werden gesendet..."; return true; } // End --> </script> </style> <body> <table width="800" height="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td class="verlauf-links" valign="top" width="12"></td> <td valign="top" bgcolor="#FFFFFF"><table width="100%" height="100%" border="0" cellpadding="5" cellspacing="0" class="Rahmen"> <tr> <td width="90%" valign="top"><img src="../pics/Design/pfeil.gif" align="texttop" height="13" width="15"> <strong>Eingeloggt als: <%Response.Write(Session("Benutzername"))%> <img src="../pics/Design/Icon/lock.png" width="20" height="20" align="absmiddle"></strong></td> <td valign="top"><a href="../login/logout.asp"><img src="../pics/Design/Icon/denied.png" width="20" height="20" border="0" align="absmiddle"> logout</a></td> </tr> <tr> <td colspan="2" valign="top"><div align="left"> <blockquote> <p> </p> <p>Neues Thema erstellen </p> <hr size="1"> <p> </p> </blockquote> <form name="Kontakt" method="post" action="new_eintragen.asp" onSubmit="return submitForm(this.Submitbutton)"> <table width="90%" border="0" align="center" cellpadding="5" cellspacing="0"> <tr> <td width="100">Thema:</td> <td width="100%" height="60"><input name="Ueberschrift" type="text" id="Ueberschrift" value="max. 100 Zeichen" size="25" maxlength="100" style="color: #ccc;" onFocus="value='';style.color='#000';"> <input name="Autor" type="hidden" id="Autor" value="<%Response.Write(Session("ID_spieler"))%>"></td> </tr> <tr> <td width="100"> Beitrag:</td> <td><div align="left"> <% Dim oFCKeditor Set oFCKeditor = New FCKeditor oFCKeditor.BasePath = "../Edit/FCKeditor/" oFCKeditor.Create "Beitrag" %> </div></td> </tr> <tr> <td colspan="2"> <div align="center"> <input type="submit" name="Submit" value="Eintragen"> </div></td> </tr> </table> </form> <p align="center"><img src="../pics/Design/Icon/info.png" width="20" height="20" align="absmiddle"> Bitte auf eine geflegte Rechtschreibung achten! </p> </div> <div align="center"><a href="logout.asp"></a> </div></td> </tr> </table> </td> <td class="verlauf-rechts" valign="top" width="12"></td> </tr> </table> </body> </html>Re: German Umlaut
The problem occurs only at fields which I read out from the database or a Session Cookie
The Umlauts are written in these variables in clear text like ä,ü,ö
Normal text is written without any problems (HTML like äüö )