Hi All

I am getting this error.

Microsoft VBScript runtime (0x800A0006)
Overflow: '[number: 32768]'


I am using if and case statments a lot, at certain point when I am just
putting another case statment its giving me this error. if I am removing
that line its OK
same code I tried with if conditions and clng(objRec("TEMP_TYPE"))

Here is my code

TEMP_TYPE = cint(objRec("TEMP_TYPE"))

SELECT CASE TEMP_TYPE
CASE 1
%>
<!--#include file="M_Templat1.asp" -->
<%
case 2
%>
<!--#include file="M_Templat2.asp" -->
<%
case 3
%>
<!--#include file="M_Templat3.asp" -->
<%
END SELECT

any one know whats problem.