Qual'è il problema in questo codice?:
codice:
var Parziale = ("SELECT COUNT(*) AS tot_a FROM tabella WHERE campo = 'a'");
var Parziale = ("SELECT COUNT(*) AS tot_b FROM tabella WHERE campo = 'b'");
var Parziale = ("SELECT COUNT(*) AS tot_c FROM tabella WHERE campo = 'c'");

Rs.Open(Parziale, Str, 3, 3);
if (!Rs.EOF);
{
Response.Write(Parziale("tot_a"));
Response.Write(Parziale("tot_b"));
Response.Write(Parziale("tot_c"));
} 
else if {
Rs == 0;
}

Rs.Close();
perche restituisce:
codice:
Microsoft JScript compilation error '800a03ea' 

Syntax error 

else if {
^