I am attempting to port some old asp to asp.net. Following this Microsoft tutorial! I am going through the errors and this XML one has me stuck. I have placed the opening and closing parenthesis in several places, but I am still getting the error. I'm sure this is something I'm overlooking, so any help is welcomed.
IF AAP><"" or EXECCOMM><"" or Immigration><"" or MgrMember><"" or OSHA><"" or StratPlan><"" or WageHour><"" or ERISA><"" or Health><"" or Litig><"" or OffHead><"" or PICCOMM><"" or Traditional><"" or WorkComp><"" then
BodyText=Replace(BodyText, "@@@SPECEmail@@@", "<b>Special E-mail Groups: </b>")
Please read this FAQ entry on MSDN:
You have a lot of
<
and>
characters in your statement and that confuses the compiler.Also:
><
needs to be<>
as explained in the comment by Andrew Morton.So try changing your code to: