I have the following code that works without the end if statements. Why does it work without it, and should I have it in anyway? It's in the middle of a different loop.
If rstemp("SomeNumber")="1" then Response.write "Some Message 1"
If rstemp("SomeNumber")="2" then Response.write "Some Message 2"
If rstemp("SomeNumber")="3" then Response.write "Some Message 3"
If rstemp("SomeNumber")="4" then Response.write "Some Message 3"
If rstemp("SomeNumber")="5" then Response.write "Some Message 5"
Start Free Trial