No hint .. Overflow, Microsoft VBScript runtime error '800a0006'

I get this error unexpectedly on a Win2003 server web application:

Microsoft VBScript Runtime Error '800a0006'

Overflow: 'Appname'

Lots of updates that are running on this server, but I returned them back.

The page is an old ASP code, and if I run the file monitoring utility, it will show BUFFER OVERFLOW when it gets to the GIF.

Any ideas?

+3
source share
4 answers

Microsoft VBScript runtime error '800a0006' almost always indicates division by zero error.

+7
source

Overflow :

Dim testVar
testVar = 99999
testVar = CInt(testVar)

, , , ?

+2

Out of Range , , , .

:

Dim IntVar AS Integer
IntVar = 50000

,

Dim LongVar As Long
longVar = 50000
+2

, ?

Response.Write "" Response.End

, , . , , .

+1

Source: https://habr.com/ru/post/1707121/


All Articles