Using this javascript in one of my forms to timestamp it, (just a simple
protected text field.) form1.MainPage.DateTimeStamp::docReady -
(JavaScript, client)if (form1.MainPage.DateTimeStamp.rawValue == null) {
var now = new Date(); form1.MainPage.DateTimeStamp.rawValue =
nowtoDateString() + now.toTimeString(); }This timestamps the form as it
should. The problem is on another form I'm building I'm using the
identical script, (with different absolute paths of course,) and I keep
getting a javascri...