Thanks Gene for your comment!
I am not sure if you will be able to read this message (server will be down) so I will answer you as quickly as possible:
1) Where exactly do you replace the double-quotes with the " phrase?
It is in SQLout function.
2) Why do quotes get replaced with quotes-plus-spaces?
It is for search. See, without full-text indexing capability, you won' t be able to search words that are surrounded by " " . Like you can' t search the word " ALOHA" (with quote). So I decided to add a space after each double quote and single quote and have my code to perform search on
space(1)+searched term. This is how we do search when you choose single byte character in the search interface.
This is a very sophisticated way to prevent unwanted result. Like you don' t want to see
readable when you just want to search
able, but what about
" able" (with quote) ?
The same applies to vbcrlf. You can try searching the word
able and you will know what I mean.
3) Where are you replacing the vbcrlf with a <br>?
It is in m_process.asp
Again, thank you for your comment. I have tried my best to use browser' s JS capability to reduce server loads. We can actually use RegEXP with VBScript, but it is way way way too slow than JScript. And since today' s PC has a lot more CPU power than before, why not use it?

(my home PC has 2.2GHz CPU => a lot more powerful than my current server)
< Message edited by samuel -- 2002-07-15 0:44:15 >