you want something more like...
Code:
LStart = Request.form("LStart")
Plus30 = (DateAdd("d",30,CDate(LStart)))
As said befoire, if the system knows LStart is a date you can just do a standard addition...
Code:
LStart = Request.form("LStart")
Plus30 = CDate(LStart)+30
looks like you are trying to do a start of month end of month type thing...if so why not try....
Code:
LStart = Request.From("LStart") ' Gets first day or month
LEnd = DateAdd("d",-1, DateAdd("m",1,CDate(LStart))) ' Add 1 month, subtract 1 day
Just in case you need it.
