bongmarley
Programmer
I have two record sets with almost identicle syntax one works and one doesn't.
I have this first
set getPercentage=con.execute("select * from Global where recDate="&request("theDATE"
&"and school='"&session("account"
&"' and profNo="&request("profNo"
)
then about 10 lines later I have this
set getPercentage=con.execute("select * from Global where recDate="&request("theDate"
&"and school='"&session("account"
&"'"
The first one works but the second does not. The Date request variable in the second piece of code seems to have all value how is that possible?
I have this first
set getPercentage=con.execute("select * from Global where recDate="&request("theDATE"
then about 10 lines later I have this
set getPercentage=con.execute("select * from Global where recDate="&request("theDate"
The first one works but the second does not. The Date request variable in the second piece of code seems to have all value how is that possible?