date plus some days

R

rick

I would like to display a date plus a number of days. EG: todays date plus 6 days. Anyone help with this one?
 
J

Jon Spivey

Hi,
this would depend which type of script you can use - assuming a windows
server.
ASP
<%=date() + 6%>
ASP.net
set the value of a label or whatever youre using to
Today.AddDays(6)

Jon
Microsoft MVP - FP
 
Top