<%
else
'addSQL= "insert into voting(add_date,country,vote) values('"&datee&"','"&countryy&"','"&votee&"') "
' ADO.execute(addSQL)
selectSQL="select * from voting where country='"&countryy&"' "
set rs=ADO.execute(selectSQL)
if votee="agree" then
agree=rs("agree")+1
updateSQL= "update voting set add_date='"&datee&"' , country='"&countryy&"' , agree='"&agree&"' where country='"&countryy&"' "
ADO.execute(updateSQL)
else
disagree=rs("disagree")+1
updateSQL= "update voting set add_date='"&datee&"' , country='"&countryy&"' , disagree='"&disagree&"' where country='"&countryy&"' "
ADO.execute(updateSQL)
end if
%>