Dovrei inserire una doppia istruzione del tipo

se strValore1 o strValore sono = "".

Ho provato con OR ma non funziona...


codice:
<%dim strValore1, strValore2
strValore1 = request.cookies("igproshoppe")
strValore2 = session("igproshoppe")
if strValore1 = "" then
response.write("<table width='150' border='0' cellspacing='0' cellpadding='0'>")
elseif strValore1 <> "" then
response.write("<table width='150' border='0' cellspacing='0' cellpadding='0'>")
response.write("<tr>") 
end if
%>