Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public function AddWorkingDays(DaysToAdd as integer)
Dim StartDate as date = today
while DaysAdded < DaysToAdd
if startdate.dayofweek <> "Saturday" and _
startdate.dayofweek <> "Sunday" then DaysAdded+=1
startDate.adddays(1)
end while
return StartDate
end function