Okay, I think I found a workaround that should work for most things, although, as the SCIENTIST said, you can't do all HTML codes.
In \includes\RTE_setup.asp change
Const blnHTMLView = false |
to
and then in \includes\RTE_toolbar_2.asp change
If blnHTMLView Then Response.Write(vbCrLf & " <img src=""" & strImagePath & "post_button_html.gif"" align=""absmiddle"" border=""0"" title=""" & strTxtToggleHTMLView & """ onClick=""HTMLview()"" style=""cursor: pointer;"">") |
to
'********** MOD *********** IF blnAdmin THEN If blnHTMLView Then Response.Write(vbCrLf & " <img src=""" & strImagePath & "post_button_html.gif"" align=""absmiddle"" border=""0"" title=""" & strTxtToggleHTMLView & """ onClick=""HTMLview()"" style=""cursor: pointer;"">") END IF '********** MOD *********** |
This will make it so that only the Admin can use the HTML View.
Note: DO NOT SAVE THE POST WHEN VIEWING IN HTML!!!
Make sure you switch back to WYSIWYG mode before you save it. Otherwise it will convert your > and < to > and < and you will display code instead of the end result. That was why I was having problems before. I didn't know that. Although, I guess if you WANT to post the code as code, it is a simple way to do so.
I'm glad I figured this out. I was banging my head against the wall earlier trying to figure out how to fix the problems I was having.