I've been attempting to insert the include file for the events calendar so it shows on my default page, however the directions (see below) do not have the "& vbNewline & _" that I have in my code, and it's definitely throwing this newbie. I continually get different error messages as I attempt to tweak...here's the latest: Error Type: Microsoft VBScript compilation (0x800A0400) Expected statement /forum/Default.asp, line 385 & vbNewline & _
this is just a hint: Snitz uses the following structure a lot: Response.Write " ... text ... 2 " & vbNewLine & _ " ... more Text ... "
Sometimes when adding Mods it might happen that you don't continue the OutPut Text by adding a & _ to the end of a line. For Example:
Old: Response.Write " ... snitz text " & vbNewLine & _ " ... more snitz text " & vbNewLine & _ " ... more snitz text " & vbNewLine & _ " ... more snitz text "
If you add a Mod on line 3 f.ex.:
New Wrong: Response.Write " ... snitz text " & vbNewLine & _ " ... more snitz text " & vbNewLine & _ " ... MOD TEXT ..." " ... more snitz text " & vbNewLine & _ " ... more snitz text "
New Correct: Response.Write " ... snitz text " & vbNewLine & _ " ... more snitz text " & vbNewLine & _ " ... MOD TEXT ..." & vbNewLine & _ " ... more snitz text " & vbNewLine & _ " ... more snitz text "
Maybe you forgot one too? If not maybe it helps someone else?