Hi, Here are a couple of tips I found while using the HTML Editor: maybe they can be useful...
1. Do you need the FckEditor not to be in the root but on a subfolder, and still make it work? Just let Dreamweaver "Find and Replace" function (Ctrl + F on Windows) do the trick! Search and replace every instance of the string "/FckEditor/" (match case and ignore whitespace checked) with the string "/mysubfolder/FckEditor/"... the use of absolute paths instead of relative will make it work! (anyway, make some tests and use at your own risk)
2. Does some strange charachters appear in the rest of the page when using the HTML Editor? That's becouse special charachters are not encoded (i.e. you are using "a" instead of "& agrave ;" - no spaces))
There are cases in which you can't manually substitute special charachters with their encoded versions - i.e. when you are Italian and you are formatting dates to be shown in literal form ("lunedi", "martedi", and so on) with Dreamweaver server-side formatting tools... So, what to do? Just Use the Server.HTMLEncode feature! [:)]
In example: <%= DoDateTime( Date() , 1, -1) %> Becomes <%= Server.HTMLEncode(DoDateTime( Date() , 1, -1)) %> The special charachters will be shown in the right way
Hope these tricks will be useful, as they worked for me [:)] |
|
|