abc
abc

Reputation: 45

Session in ASP is showing error

IF Session("days")> 1 then

this statement is not working in my Classic ASP code.Any help is greatly appreciated

Just I need to know whether this is a valid session code for Classic ASP (No error message is showing)

Upvotes: 0

Views: 232

Answers (2)

Noam Smadja
Noam Smadja

Reputation: 1035

when saving the session variable do session("var") = 1 not: session("var") = "1"

or:

 Dim svar as Integer
 svar = some integer
 session("var") = svar

Upvotes: 0

Naveen Bhalla
Naveen Bhalla

Reputation: 61

Most probably this is because Session("days") returns a string that you are using as integer.

This might fix the issue

If CINT(Session("days"))>1 Then
End If

Upvotes: 5

Related Questions