|
|
 |
The California State University Office of the Chancellor
serves as the headquarters for the 23-campus system. Approximately
500 employees work at the downtown Long Beach office, located
within walking distance of shops, museums, restaurants and
entertainment. About 100 more employees of the Chancellor's Office work
at off-site locations such as Los Alamitos and Sacramento, California.
The Chancellor's Office provides statewide management in such
areas as academic affairs, business affairs, institutional
research, computer resources, physical plant development,
employee relations, governmental affairs, general counsel,
advancement and public affairs.
The Chancellor's Office periodically has executive, administrative
and staff positions available but does not hire faculty; faculty
are recruited and hired by each of the 23 campuses.
If you're interested in joining our team, go to Chancellor's Office Job
Opportunities and submit your resume online.
The California State University, Office of the Chancellor,
is an Equal Employment Opportunity/ADA employer.
Chancellor's Office employees should use the HRS
Intranet to obtain HR information. |
 |
|
|
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)
%>
|