Dear Support
I've tweaked the code of '_aspfunctions.asp' to change a 'text area' into a 'Rich Text' editor on an edit page.
' returns true if textarea uses RichTextEditor
Function UseRTE(strField)
UseRTE = false
if strField="END_COMMENTS" then UseRTE = true end if
...
..
.
End Function
I can't work out what must change to allow the corresponding '_list.asp' page to not display HTML tags (e.g.: <P>Christmas Day is the worst </P>) .
I can't rebuild from ASPrunner with the required change made as I've made too many manual code changes.
Do I need to only change as shown below or must something else change?
' returns field format
function Format(strField)
Format = FORMAT_NONE
if strField="END_COMMENTS" then Format = "HTML" end if
....
..
.
end function
All suggestions greatly appreciated.
Chris