This should be an easy one. I am not on my desktop so I cant make sure this is the correct syntax of the following IF, can someone please confirm it is so I can pass it to a collegue ?
Current code is:
if Session("QFBlobid") = "" OR rs_Blob("Blobdata") = "" thenREGION A If not rs_FormsBlb.EOF thenREGION B else Response.Write("Error EOF") end ifend if%>
That code works well, but I need to add to the first IF. I want to run REGIONS IF that blob session doesn't exist, but also if a field of the recordset "rs_blob" is = "" OR is NULL
This is how I entered the code, unfortunately I can't confirm at this time, can someone tell me if it looks correct ?
if Session("QFBlobid") = "" OR rs_Blob("Blobdata") = "" then OR OR rs_Blob("Blobdata") is NULLREGION A... etc
Open in new window