How To

How To provides a set of short tutorials oriented towards accomplishing specific tasks.

 

This book contains the following chapters:

How to create a basic contact form

How to store uploaded files in separate folders for each user

How to automatically replace HTML tags

How to change the default font in KTML 4

How to save KTML 4 content to a file

How to configure the session expiring time in KTML 4

Dan  Popa
03-15-2006

How to force KTML4 to work in quirksmode:

  1. open /includes/ktm/core/ktml.js
  2. find this.checkDocMode();
  3. replace with /*this.checkDocMode();*/

KTML4 works when the document is in quirksmode, but it has not been tested and may not render properly.

Coldfusion DevNet edition outputs a meta tag before the DOCTYPE switch forcing the page to render in quirksmode, not standards-compliant mode.

Dan POPA