I have on my (dutch) website a little probleem with an asp application and this forum. I got the calendering system from krafft.com and when i include the calendar on my frontpage everything seems fine. But when i go to the forum (in the same browser) i got the following error:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'CDate'
/forum/common.asp, line 327

on line 327 it say's:
If CDate(Request.Cookies("FLVST")("LTVST")) < DateAdd("n", -5, Now()) Then
When i change it to this:
If Request.Cookies("FLVST")("LTVST") < DateAdd("n", -5, Now()) Then
Then it is working, but, the 'edited by...' is not working anymore. My question is, is it possible to change the line, but 'Edited by..' is still working?
I am gonna email the developer from krafft.com as well, maybe he knows what to do.