<%@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) %> 欢迎访问“谢晋影视艺术学院”网站
 
 

 

上海师范大学谢晋影视艺术学院

2007年一年制专修班招生简章

上海师范大学谢晋影视艺术学院(公办),前身是上海谢晋-恒通明星学校。面向全国部分省市招生,至今已毕业了多届学生,他们中大部分已活跃在影视界,如“小燕子”赵薇、“金锁”范冰冰、上海电视台生活时尚频道“气象小姐” 朱莉叶、东视新闻娱乐频道“娱乐在线”的金宇宸、刘薇、范雨林、李解、刘军、严宽、晋松、岳鼎、牟凤彬、乐瑶、沙柏宁等。表演系学生曹议文在2003年首届“上海小姐”评选活动中获得亚军,在读表演系学生陈彦已经在影视圈小有名气。
学院由著名电影导演谢晋任院长,旨在创办一个全新观念的影视学院,培养一批广播影视新星,并就中国广播影视教育如何更好更快地培养优秀人才,探索一条新的途径。学院依托综合性大学的办学优势及人文环境,发扬原谢晋—恒通明星学校的办学传统,继续拓展“密集型训练、高起点教学、全方位培养、实践中提高”的办学特色,结合中外广播影视教育的经验,注重实际表演技能的培养,使学生在艺术修养、表演、主持实践和技能训练等方面得到全面发展。在学期间将重点组织和推荐学生参加各种艺术实践活动,以培养学生的实践能力和创新能力。

一、专业简介
影视表演:培养学生德、智、体、能全面发展,培养具有丰富文化艺术知识和道德修养的与时俱进的影视表演人才。强调学生实践能力和综合能力的培养。同时为来年的高考做专业上的准备。开设的主要课程:表演、台词、形体、舞蹈、声乐、技能训练等。

二、招生人数、地区和收费标准

专业名称

学制

招生人数

招生地区

学费
(元/年)

备注

影视表演

一年

20

上海、江苏、浙江、安徽、江西、山东、河南、湖北、黑龙江、吉林、辽宁、甘肃、河北、贵州

14000

 

 

 

 

三、报考条件
1、身体健康、体形匀称、五官端正、口齿清楚,同时具备良好的心理素质;
2、女生身高1.62米及以上;男生身高1.72米及以上;
3、年龄:25周岁以下。

四、报名时间、地点及方法
报名时须携带、出示(原件):
1、本人身份证、近期同一底片免冠一寸报名照2张
2、报名费、考务费220元。
报名地点、时间:
1、上海市桂林路100号上海师大谢晋影视艺术学院
2、2007年7月7日至13日

考试地点、时间:
1、上海市桂林路100号上海师大谢晋影视艺术学院
2、2007年7月14日(周六)

五、考试内容


专业名称

初试科目

复试科目

第二次复试科目

备?? 注

表演

1、朗诵(自备寓言、散文或故事)
2、演唱(自备歌曲)
3、形体(自备舞蹈、武术或体操)
4、表演(即兴小品)

  1. 表演(即兴表演)
  2. 朗诵(指定)
  3. 演唱(自备歌曲)
  4. 形体(即兴舞蹈、形体模仿)
  5. 面试、试镜(录像)
  1. 考生一律穿平底鞋参加考试
  2. 女生一律不化妆、不穿裙装

 

六、录取及其他
(一)、学院按考生专业成绩顺序择优录取。
(二)、由于学校的住宿条件所限,入学后学生自行解决住宿。
(三)、在校期间学习成绩优秀、品德良好者,可重点推荐2008年本院艺术类专业考试。
(四)、上课地点:同考试地点。

七、联系地址
上海师范大学谢晋影视艺术学院(上海市桂林路100号)? 邮政编码:200234
咨询电话:64322031、64322029、64322415(传真)
学院网址:http://xiejin.shnu.edu.cn ?或:谢晋影视
E-mail: xjys@shnu.edu.cn

 

上海师范大学谢晋影视艺术学院
2007421

 

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