<%@LANGUAGE="VBSCRIPT"%> <% set news = Server.CreateObject("ADODB.Recordset") news.ActiveConnection = MM_xj_STRING news.Source = "SELECT ID, title, time, pic FROM news ORDER BY ID DESC" news.CursorType = 0 news.CursorLocation = 2 news.LockType = 3 news.Open() news_numRows = 0 %> <% set picnews = Server.CreateObject("ADODB.Recordset") picnews.ActiveConnection = MM_xj_STRING picnews.Source = "SELECT ID, pic, alt FROM picnews ORDER BY ID DESC" picnews.CursorType = 0 picnews.CursorLocation = 2 picnews.LockType = 3 picnews.Open() picnews_numRows = 0 %> <% set pic = Server.CreateObject("ADODB.Recordset") pic.ActiveConnection = MM_xj_STRING pic.Source = "SELECT ID, pic FROM news ORDER BY ID DESC" pic.CursorType = 0 pic.CursorLocation = 2 pic.LockType = 3 pic.Open() pic_numRows = 0 %> <% set ynews = Server.CreateObject("ADODB.Recordset") ynews.ActiveConnection = MM_xj_STRING ynews.Source = "SELECT ID, title, time FROM ynews ORDER BY ID DESC" ynews.CursorType = 0 ynews.CursorLocation = 2 ynews.LockType = 3 ynews.Open() ynews_numRows = 0 %> <% set stars = Server.CreateObject("ADODB.Recordset") stars.ActiveConnection = MM_xj_STRING stars.Source = "SELECT * FROM stars ORDER BY ID DESC" stars.CursorType = 0 stars.CursorLocation = 2 stars.LockType = 3 stars.Open() stars_numRows = 0 %> <% Dim Repeat4__numRows Repeat4__numRows = 5 Dim Repeat4__index Repeat4__index = 0 pic_numRows = pic_numRows + Repeat4__numRows %> <% Dim Repeat2__numRows Repeat2__numRows = 5 Dim Repeat2__index Repeat2__index = 0 ynews_numRows = ynews_numRows + Repeat2__numRows %> <% Dim Repeat1__numRows Repeat1__numRows = 5 Dim Repeat1__index Repeat1__index = 0 news_numRows = news_numRows + Repeat1__numRows %> <% ' *** Move To Record: handle 'index' or 'offset' parameter if (Not MM_paramIsDefined And MM_rsCount <> 0) then ' use index parameter if defined, otherwise use offset parameter r = Request.QueryString("index") If r = "" Then r = Request.QueryString("offset") If r <> "" Then MM_offset = Int(r) ' if we have a record count, check if we are past the end of the recordset If (MM_rsCount <> -1) Then If (MM_offset >= MM_rsCount Or MM_offset = -1) Then ' past end or move last If ((MM_rsCount Mod MM_size) > 0) Then ' last page not a full repeat region MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' move the cursor to the selected record i = 0 While ((Not MM_rs.EOF) And (i < MM_offset Or MM_offset = -1)) MM_rs.MoveNext i = i + 1 Wend If (MM_rs.EOF) Then MM_offset = i ' set MM_offset to the last possible record End If %> <% ' *** Move To Record: if we dont know the record count, check the display range If (MM_rsCount = -1) Then ' walk to the end of the display range for this page i = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or i < MM_offset + MM_size)) MM_rs.MoveNext i = i + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = i If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If ' if we walked off the end, set the offset based on page size If (MM_rs.EOF And Not MM_paramIsDefined) Then If (MM_offset > MM_rsCount - MM_size Or MM_offset = -1) Then If ((MM_rsCount Mod MM_size) > 0) Then MM_offset = MM_rsCount - (MM_rsCount Mod MM_size) Else MM_offset = MM_rsCount - MM_size End If End If End If ' reset the cursor to the beginning If (MM_rs.CursorType > 0) Then MM_rs.MoveFirst Else MM_rs.Requery End If ' move the cursor to the selected record i = 0 While (Not MM_rs.EOF And i < MM_offset) MM_rs.MoveNext i = i + 1 Wend End If %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" MM_keepURL="":MM_keepForm="":MM_keepBoth="":MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each Item In Request.QueryString NextItem = "&" & Item & "=" If (InStr(1,MM_removeList,NextItem,1) = 0) Then MM_keepURL = MM_keepURL & NextItem & Server.URLencode(Request.QueryString(Item)) End If Next ' add the Form variables to the MM_keepForm string For Each Item In Request.Form NextItem = "&" & Item & "=" If (InStr(1,MM_removeList,NextItem,1) = 0) Then MM_keepForm = MM_keepForm & NextItem & Server.URLencode(Request.Form(Item)) End If Next ' create the Form + URL string and remove the intial '&' from each of the strings MM_keepBoth = MM_keepURL & MM_keepForm if (MM_keepBoth <> "") Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1) if (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) if (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) ' a utility function used for adding additional parameters to these strings Function MM_joinChar(firstItem) If (firstItem <> "") Then MM_joinChar = "&" Else MM_joinChar = "" End If End Function %> <% ' *** Move To Record: set the strings for the first, last, next, and previous links MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 0) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then params = Split(MM_keepMove, "&") MM_keepMove = "" For i = 0 To UBound(params) nextItem = Left(params(i), InStr(params(i),"=") - 1) If (StrComp(nextItem,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & params(i) End If Next If (MM_keepMove <> "") Then MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1) End If End If End If ' set the strings for the move to links If (MM_keepMove <> "") Then MM_keepMove = MM_keepMove & "&" urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = urlStr & "0" MM_moveLast = urlStr & "-1" MM_moveNext = urlStr & Cstr(MM_offset + MM_size) prev = MM_offset - MM_size If (prev < 0) Then prev = 0 MM_movePrev = urlStr & Cstr(prev) %> 欢迎访问“谢晋影视艺术学院”网站
 
 

 
上海师大谢晋影视艺术学院
院长、著名导演:谢晋

执行院长:赵炳翔

党总支书记:高亭
副院长:陈明正
副院长:康爱石
副书记、副院长:张玮
 
 
院工会主席:涂晓 院办公室主任:徐君 院办公室副主任:张慧芳 组织员:翁晓玲 院分团委书记:董妍均

 

姓名 性别 学历 职称 任课 姓名 性别 学历 职称 任课
陈明正 本科 教授 表演、影视理论 连颖 硕士 讲师 文艺理论
康爱石 本科 教授 表演 王宇 硕士 助教 台词
卢若萍 本科 教授 表演 王兵 本科 讲师 表演
魏淑娴 本科 教授 表演 王晶晶 硕士 助教 表演
糜曾 本科 教授 表演 王韦予 研究生 助教 舞台美术
贾幻真 本科 教授 台词 王雯 本科 助教 表演
吴洪林 本科 教授 主持艺术          
本科 副教授 形体 王平 本科 副教授 电视现场编导
朱卓尔 硕士 助教 表演 凌以民 本科 副教授 非线性编辑技术
胡榕容 本科

助教

表演 张成华 本科 副教授 影视语言
赵乙嫱 本科 助教 表演 高宏明 本科 副教授 影视导演基础

唐剑威

本科 助教 表演 庄思聪 本科 副教授 电视系统与设备
王灿 本科 副教授 台词 徐方 本科 副教授 影视录音

张捷诚

本科 副教授 台词 潘维德 本科 实验师 摄影艺术
高祥荣 硕士 副教授 语言、主持 徐宝兴 本科 实验师 电视导播

刘阳

硕士 讲师 语言 应国虎 本科 讲师 影视灯光艺术
穆欣 硕士 助教 语言、主持 黄雄根 本科 讲师 影视灯光艺术
邱乙哲 硕士 助教 语言、主持 林国淑 研究生 讲师 影视美学
林毅 在读博士 助教 主持艺术 何颖 研究生 讲师 三维动画
周筱燕 本科 副教授 声乐 解建峰 硕士 讲师

影视基础写作

施国新 本科 副教授 声乐 王翔宇 硕士 讲师 影视美术基础、平面设计
朱玲莹 本科 助教 声乐 宋占豪 本科 助教 电视摄像
王砾玉 本科 讲师 形体 俞佳丽 在读博士 讲师 传播学
丁禹雄 本科 副教授 国标舞 陈双寅 硕士 讲师 多媒体技术基础
张丽萍 本科 教员 国标舞 周芸 本科 助教 影视音乐欣赏

王国兴

本科 助教 形体 汪献平 博士后 讲师 中外电影发展史
涂晓 本科 副教授 影视理论          
董桂颖 本科 助教 化妆、服装          
周胜南 硕士 助教 戏剧理论          
    
 

 
地址:中国上海市桂林路100号 邮编:200234 电话:021-64322029 64322031 传真:021-54643341
 
本网站版权所有:上海师范大学 谢晋影视艺术学院
 
<% news.Close() %> <% picnews.Close() %> <% pic.Close() %> <% ynews.Close() %> <% stars.Close() %>