형변환 하실려나 보군요. asp 에서 int 범위는 아래와 같습니다.
Cint(정수 Integer) : -32768 ~ +32767
범위를 벗어난것 같네요. Cint 를 Clng 변경해서 사용하세요.
Clng 범위(Long) : -2,147,483,648 ~ 2,147,483,647
You must be using the CINT( ) function somewhere in there. CINT() is limited to SHORT integers, in the range of -32768 to +32767. Just use CLNG( ) instead.