views:

18

answers:

1

during inserting values from ASP page to SQL 2000

+1  A: 

You can't convert strings to integers if they are not made entirely from numbers.

So, if you try to convert aaa to an int, this will fail. If you try to convert the varchar 123 to an int, it will work.

Oded