• Welcome to DNForum.com™ - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars
    If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the oldest global domain name community on the internet and continues to grow every day. There are over 45,000 domainers on DNForum doing everything from buying domains, selling domains, using our free in-house built tools, learning about domains and discussing domains. Take a minute and Register.

Wanted: Service help wanted ASP Error

Status
Not open for further replies.

pilejarse

New Member
Legacy Platinum Member
Joined
Apr 2, 2006
Messages
7
Reaction score
0
Microsoft VBScript runtime error '800a0006'

Overflow: 'cint'

func.asp, line 24

what to do to solve this code problem?

24.line is like that :

sql = "UPDATE count SET count='" & cint(bfx("count"))+1 & "'"
 
if count is an integer you shouldn't be enclosing it in single quotes. single quotes are for strings...

try

sql = "UPDATE count SET count=" & cint(bfx("count"))+1 & ";"
or possibly bfx("count") is null...
 
Status
Not open for further replies.
Back
Top Bottom