Ok..
i do not see an OR anywhere in that code...
second..
you can eliminate all of those if, then else if, end if statements...
all un necessary.
Code:
strSentence1 = request.form("status")
strSen1 = Split(strSentence1, ", ")
strSentence2 = request.form("email")
strSentence3 = request.form("action")
strSentence4 = request.form("severity")
strSentence5 = request.form("week")
strSentence6 = request.form("class")
strSentence7 = request.form("bu")
strSentence8 = request.form("server")
does the exact same thing.
you are testing NULL on each field. therefore when you set the data, if the form filed is nuill, it will end up being null there too.
all your original code is logically correct, but completely irrelevant..