Potential Appointment Date Bug
Brought to you by:
fjohnston_00,
mpullen
In StuAPpMak.aspx.cs there is a functions to
GetStartDate () . The format structure of the return
data is embedded in US data format - this will not
work on non US systems which normally follow the
dd/mm/yy format. The offending code is:
dateStart = System.DateTime.Parse(Convert.ToString
(System.DateTime.Now.Month....etc.
This should be recoded to lookup the regional
parameters and structure the return data format
consistent witht he platform settings..
Alex