README 707 B

12345678910111213141516171819202122
  1. Tools
  2. -------
  3. * HtmlWriter.cs: it provides a custom HtmlTextWriter implementation with
  4. logging capabilities to help figuring out which method in HtmlTextWriter
  5. you should invoke and where to do it.
  6. How to use it.
  7. ---------------
  8. * Run 'make'. It will generate HtmlWriter.dll.
  9. * Copy HtmlWriter.dll to the 'bin' directory.
  10. * Copy web.config to the directory in which you run xsp
  11. (the parent of 'bin').
  12. * There are 2 environment variables used:
  13. -HTMLWRITER_FULLTRACE=yes: displays the stack trace for
  14. every method called.
  15. -HTMLWRITER_FILE=[yourfilename]: output goes to a file
  16. instead of stdout.
  17. The default output is a sequence number, the function called and its
  18. arguments.