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

 
    范冰冰,女,山东烟台人,身高1.68米,本院1997年(第三届)毕业生。     1998年至1999年因在电视剧《还珠格格》中成功地饰演金锁一角而一举成名,在多部电视剧中担任主角,如《马永贞争霸上海滩》、《小李飞刀》、《青春出动》、《乱世飘萍》、《风雨步高苑》等。
    范雨林(世民),男,广东佛山市人,身高1.74米,本院1995年(首届)毕业生,现为广州电视台《名人风采》栏目编导主持人,1994年签约美国SLA影视公司。
     毕业后的主要作品:主演电视剧《军人梦》(男一号,演连长),《在缉毒风暴》、《东方教母》、《警匪较量珠三角》、《火蝴蝶》、《龙井威斯基》、《重案组》、等剧中担任主要角色,被媒介誉为"东方史泰龙"。
    是安,男,上海市人,身高1.70米,本院1997年(第三届)毕业生。
     毕业后主演过电视剧《高一新生》、《青春节拍》,在多部电视剧中担任主要角色或重要角色,如《西部故事》、《好人坏人》(原名《醉悠悠》)、《哎哟,妈妈》等。
    胡敏,女,上海市人,身高1.60米,本院1996年(第二届)毕业生。 该生毕业后在以下作品中担任主要角色或配角,如《三坊七巷》、《亲密爱人》、《太阳火》(电影)、《归航》、《长在红旗下》、《徐福东渡传奇》、《苏州两公差》、《哪吒》、《世纪风》、《少林七霸》、《包公生死劫》。
    晋松,男,云南昆明人,身高1.88米,体重100公斤,本院1996年(第二届)毕业生。毕业前曾是国家现代五项运动员,1993年全国现代五项锦标赛个人全能冠军,五项包括:击剑、游泳、射击、马术障碍、越野跑。
     本人特长:拳击、散打、摩托车特技、健美运动、时装模特、马术特技策划。
     主要影视作品:《都市迷彩》男主角,《儿女英雄传》重要角色,《花木兰》饰反一号突厥可汗,其他还参加过《詹天佑》、《鸦片战争》、《宝莲灯》、《周恩来在上海》、《神厨》、《真命小和尚》、《济公后传》等拍摄,均任重要角色。
    赵薇,女,安徽芜湖人,身高1.68米,本院1995年(首届)毕业生。毕业后先后拍过电影《女儿谷》、电视剧《李叔同》、《姐姐妹妹闯北京》,1996年考入北京电影学院,同年参加《还珠格格》剧组,担任女主角,随着《还珠格格》剧组而一举成名,红遍祖国大江南北,海峡两岸。
     后又拍过《老房有喜》、《表妹吉祥》、《缘,妙不可言》、《决战紫禁城》、《侠女闯天关》、《烟朦朦雨朦朦》等多部电视剧,均为女主角。
     现为北影厂演员。
    郑蓉蓉,女,上海市人,身高1.61米,1995年本院(首届)毕业生。
     毕业后在多部电视剧中担任主要角色,如:《糊涂衙门》(主演潘金莲)、《女儿谷》、》《一个延续40年的故事》、《婆婆媳妇小姑》、《承诺》、《派出所的故事》、《田教授家的二十八个保姆》、《网络时代的春天》(即将拍摄,饰演女主角:记者辛丹)《北纬三十八度》(即将拍摄,饰演女主角:毛泽东的媳妇――刘思琪)
    牟凤彬,男,河南平顶山人,身高1.81米,1995年本院(首届)毕业生。
     主要作品:领衔主演《这里没有冬季》(深圳电视台),在电影《女儿谷》、《大江东去》中任重要角色;在电视剧《女人心事》、《梦园何方》、《济公传》、《还珠格格》、《真空爱情记录》、《烟雨红尘》等作品中任主要角色。
    刘薇,女,四川重庆人。身高1.63米,1995年本院(首届)毕业生,现为重庆市话剧演员。
     毕业后1995年因主演电影《白粉妹》(张良导演)而知名,1996年获百花奖最佳女主角提名。
     在多部电视剧任主要角色,如《夏日恋语录》、《欲望》、《白棉花》(台湾片)、《李叔同》、《八月葬礼》、《跨国婚姻》、《女人三十》、《生死之门》、《恋爱季节》等。
    严宽,男,上海市人,身高1.80米,本院1996年(第二届)毕业生。该生在表演、朗诵、歌唱等方面都有较好基础。
     毕业后在多部电视剧中任主要角色,如《情书》、《为了明天》、《碧血情》、《奇人奇案》、《星网》等,还经常在电视广告中露面。
    俞宙,男,上海市人,身高1.76米,本院1997年(第三届)毕业生。
     毕业后在多部电视剧中担任主要角色落重要角色,如《岁月如歌》(主演张里根)、《血色黎明》(饰演30年代老舰长之子)、《香港岁月》(饰演富商之子)以及《哎哟,妈妈》、《望子成龙》、《超级城市》等。
    岳鼎,男,河南人,身高1.70米,本院1996年(第二届)毕业生。
     毕业前为部队文艺工作者,表演自然幽默、口齿伶俐清楚,是极佳的特型演员。 毕业后参加过电视剧《兄弟》、《海上圣火》、《婆婆媳妇小姑》、《真命小和尚》(二)等多部电视剧的演出,担任主演或重要角色。
    曾昂,男,身高1.78米,上海市人,本院1995年(首届)毕业生,毕业后在多部电视剧中担任主要角色或重要角色如《辑毒警察》、《军人梦》、《哪吒》、《法眼》、《铁血男儿》、《特区女子军乐队》、《武训传》、《世纪人生》等。
    陈懿,女,上海市人,身高1.64米,1995年本院(首届)毕业生,在影、视、歌、剧及节目主持方面都有较高水准,毕业后在多部电视剧中担任主要角色或重要角色,有《水面无波――上海秘密战》、《陈观音》、《戈璧作证》、《婆婆媳妇小姑》、《承诺》、《朱德上井岗》(演朱德夫人伍若兰),还在话剧《沧海还珠》中担任重要角色。
    吴晓敏,女,上海市人,身高1.67米,本院1997年(第三届)毕业生。
     毕业后主演的《民族村里的年轻人》(云南电视台拍)颇受好评,在多部电视剧中担任主要角色或重要角色,如《神厨》、《戏说珍珠塔》、《世纪人生》等。多次刊登杂志封面,如《上海服饰》、《电影作品》(四川电影杂志)、《健美风采》等。
    金于宸,男,上海市人,身高1.78米,本院2002年(首届)大专班毕业生。曾获2002年东方新人“明日偶像”奖、2002全球华人新秀歌唱大赛上海赛区决赛“传媒之星”奖和“唱片公司推荐”奖,被新索唱片公司选为培养新人,现任福建东南电视台《开心100》、《娱乐乐翻天》等节目主持人。2003获得东南电视台“最受观众喜爱的主持人”奖。
    管艺,女,湖北三峡市人,本院2002年(首届)大专班毕业生。语言功底扎实。曾在谢晋导演的电影《女足九号》中饰演“黄猫”一角,颇受好评。现任福建东南电视台《开心100》、《非常音乐》等栏目主持人。
 
 

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