Posts: 317
Name: This Space for Rent
Location: Georgia
|
Try
Response.Write(IsNumeric(Session("intLoan")))
I think this will either give you a true or false response.
So...
'check loan
Dim loan_check
loan_check = IsNumeric(Session("intLoan"))
If loan_check then
'update database
Else
Response.Write("please enter a number")
End If
__________________
Please login or register to view this content. Registration is FREE
"I think therefore I am, I think." <!-- George Carlin
|