我为此使用经典的 ASP。我的目标是弄清楚在显示“抱歉注册已满”消息之前已经输入了多少条目。我认为仅计算数据库中的行数会很简单,但会出现类型不匹配错误。我不在乎行中的内容...只是在寻找原始数字。
Set ConnObj = Server.CreateObject("ADODB.Connection")
ConnObj.Provider="Microsoft.Jet.OLEDB.4.0;Data Source=my-database-here"
ConnObj.Open
mysql="SELECT COUNT(*) FROM Contest"
Set HowMany = ConnObj.Execute(mysql)
if HowMany > 50 then
response.Write "Sorry registration is full"
response.end
end if
非常感谢提前。