To tell you the truth I can't rememeber in VBScript but you can use:
Code:
If strDate >= "03/01/2004" AND strDate <= "04/01/2004" Then
However if your strDate is a string you are doing a string comparison, not on the date. If strDate is a Date then you need to make sure your computer interprets "03/01/2004" as the date you intend it to be. Better if you convert it to a date yourself by hand and then test.
--
Joe