views:

1570

answers:

3

I'm receiving suddenly this error on a Win2003 Server Web Application:

Microsoft VBScript runtime error '800a0006'

Overflow: 'Appname'

A bunch of updates where performed on this server but I have rolled them back all.

The page is old ASP code and if i run file monitor utility it will show the BUFFER OVERFLOW when it hits a GIF.

Any ideas?

+2  A: 

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

Randolpho
A: 

Can you figure out where in the file the error is happening? You can use

Response.Write "here" Response.End

And then load the page to see what point it gets to. Then you can post the code that is crashing and we may be able to help you more.

Michael Pryor
A: 

You can reproduce the Overflow error like this :

Dim testVar
testVar = 99999
testVar = CInt(testVar)

So, maybe this indicates there are some problems with the data types where you are setting some variables on that file?

çağdaş

related questions