In your inc_functions.asp file look for the following code. It is in the "ChkString()" function (lines 496 - 500, if you haven't edited your file):if fField_Type = "preview" then
if strAllowHTML <> "1" then
fString = HTMLEncode(fString)
end if
end if
You can either delete it or comment out each line of code by putting a quote ' in front of each line.
Then in the same function, about 88 lines back up, you will see this bit of code (lines 408 - 414):elseif fField_Type = "message" then
if strAllowHTML <> "1" then
fString = HTMLEncode(fString)
end if
elseif fField_Type = "preview" then
if strAllowHTML <> "1" then
fString = HTMLEncode(fString)
end if
elseif fField_Type = "hidden" then
fString = HTMLEncode(fString)
end if
The code in red is what you will add to your file.
If you don't think you can do that correctly, email me your inc_functions.asp file and I'll edit it for you.
- David