|
|
 |
|
Training and Professional Development
New Employee Orientation
The New Employee Orientation provides an overview of the CSU system, the 23
campuses and the role of the Chancellor's Office, as well as practical information
about the Golden Shore building and the departments that provide services to the
employees who work at the Chancellors' Office such as Conference Services,
Building Operations, Accounting, Contracts & Procurement, and Communications.
Due to the large volume of material covered, the program is divided into
three segments:
- New employee's first day of work: building tour, fill out forms, parking
fees, OneCard photo, NEO OnLine and orientation to employee's department by
his or her supervisor.
- Every other Wednesday: HR policies, benefits and programs.
- One Friday a month: Orientations by Conference Services, Telephone A/V
Support, Desktop Services, Accounting, Communications, Procurement, and
Building Operations.
|
|
Last Updated:
<%
'Dim strFileName
'Dim dtmLastModified
'Dim dtmLastModifiedDate
'Dim dtmLastModifiedTime
Dim strFileName, strFileNameCalendar, objFile, objFileSystemObject
Dim dtmLastModified, dtmLastModifiedDate, dtmLastModifiedTime
Dim sLastModifiedMonth
strFileName = Request.ServerVariables("SCRIPT_NAME")
strFileName = Replace(strFileName, "/", "\")
strFileName = Server.MapPath(strFileName)
Set objFileSystemObject = Server.CreateObject("Scripting.FileSystemObject")
Set objFile = objFileSystemObject.GetFile(strFileName)
dtmLastModified = objFile.DateLastModified
Set objFile = Nothing
Set objFileSystemObject = Nothing
dtmLastModifiedDate = FormatDateTime(dtmLastModified, 1)
dtmLastModifiedTime = FormatDateTime(dtmLastModified, 3)
Select Case Month(dtmLastModified)
Case 1
sLastModifiedMonth = "January"
Case 2
sLastModifiedMonth = "February"
Case 3
sLastModifiedMonth = "March"
Case 4
sLastModifiedMonth = "April"
Case 5
sLastModifiedMonth = "May"
Case 6
sLastModifiedMonth = "June"
Case 7
sLastModifiedMonth = "July"
Case 8
sLastModifiedMonth = "August"
Case 9
sLastModifiedMonth = "September"
Case 10
sLastModifiedMonth = "October"
Case 11
sLastModifiedMonth = "November"
Case 12
sLastModifiedMonth = "December"
End Select
Response.Write sLastModifiedMonth & " " & Day(dtmLastModified) & ", " & Year(dtmLastModified)
%>
|