<%@LANGUAGE="VBSCRIPT"%> <% Dim Reczsnews Dim Reczsnews_numRows Set Reczsnews = Server.CreateObject("ADODB.Recordset") Reczsnews.ActiveConnection = MM_connzsnews_STRING Reczsnews.Source = "SELECT * FROM newsData ORDER BY news_time DESC" Reczsnews.CursorType = 0 Reczsnews.CursorLocation = 2 Reczsnews.LockType = 1 Reczsnews.Open() Reczsnews_numRows = 0 %> <% Dim Recjynews Dim Recjynews_numRows Set Recjynews = Server.CreateObject("ADODB.Recordset") Recjynews.ActiveConnection = MM_connjynews_STRING Recjynews.Source = "SELECT * FROM newsData ORDER BY news_time DESC" Recjynews.CursorType = 0 Recjynews.CursorLocation = 2 Recjynews.LockType = 1 Recjynews.Open() Recjynews_numRows = 0 %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = 15 Repeat2__index = 0 Recjynews_numRows = Recjynews_numRows + Repeat2__numRows %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = 15 Repeat1__index = 0 Reczsnews_numRows = Reczsnews_numRows + Repeat1__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim Recjynews_total Dim Recjynews_first Dim Recjynews_last ' set the record count Recjynews_total = Recjynews.RecordCount ' set the number of rows displayed on this page If (Recjynews_numRows < 0) Then Recjynews_numRows = Recjynews_total Elseif (Recjynews_numRows = 0) Then Recjynews_numRows = 1 End If ' set the first and last displayed record Recjynews_first = 1 Recjynews_last = Recjynews_first + Recjynews_numRows - 1 ' if we have the correct record count, check the other stats If (Recjynews_total <> -1) Then If (Recjynews_first > Recjynews_total) Then Recjynews_first = Recjynews_total End If If (Recjynews_last > Recjynews_total) Then Recjynews_last = Recjynews_total End If If (Recjynews_numRows > Recjynews_total) Then Recjynews_numRows = Recjynews_total End If End If %> <% Dim MM_paramName %> <% ' *** Move To Record and Go To Record: declare variables Dim MM_rs Dim MM_rsCount Dim MM_size Dim MM_uniqueCol Dim MM_offset Dim MM_atTotal Dim MM_paramIsDefined Dim MM_param Dim MM_index Set MM_rs = Recjynews MM_rsCount = Recjynews_total MM_size = Recjynews_numRows MM_uniqueCol = "" MM_paramName = "" MM_offset = 0 MM_atTotal = false MM_paramIsDefined = false If (MM_paramName <> "") Then MM_paramIsDefined = (Request.QueryString(MM_paramName) <> "") End If %> <% ' *** 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 MM_param = Request.QueryString("index") If (MM_param = "") Then MM_param = Request.QueryString("offset") End If If (MM_param <> "") Then MM_offset = Int(MM_param) End If ' 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 MM_index = 0 While ((Not MM_rs.EOF) And (MM_index < MM_offset Or MM_offset = -1)) MM_rs.MoveNext MM_index = MM_index + 1 Wend If (MM_rs.EOF) Then MM_offset = MM_index ' set MM_offset to the last possible record End If 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 MM_index = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or MM_index < MM_offset + MM_size)) MM_rs.MoveNext MM_index = MM_index + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = MM_index If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount End If 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 MM_index = 0 While (Not MM_rs.EOF And MM_index < MM_offset) MM_rs.MoveNext MM_index = MM_index + 1 Wend End If %> <% ' *** Move To Record: update recordset stats ' set the first and last displayed record Recjynews_first = MM_offset + 1 Recjynews_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (Recjynews_first > MM_rsCount) Then Recjynews_first = MM_rsCount End If If (Recjynews_last > MM_rsCount) Then Recjynews_last = MM_rsCount End If End If ' set the boolean used by hide region to check if we are on the last record MM_atTotal = (MM_rsCount <> -1 And MM_offset + MM_size >= MM_rsCount) %> <% ' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters Dim MM_keepNone Dim MM_keepURL Dim MM_keepForm Dim MM_keepBoth Dim MM_removeList Dim MM_item Dim MM_nextItem ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" End If MM_keepURL="" MM_keepForm="" MM_keepBoth="" MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each MM_item In Request.QueryString MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepURL = MM_keepURL & MM_nextItem & Server.URLencode(Request.QueryString(MM_item)) End If Next ' add the Form variables to the MM_keepForm string For Each MM_item In Request.Form MM_nextItem = "&" & MM_item & "=" If (InStr(1,MM_removeList,MM_nextItem,1) = 0) Then MM_keepForm = MM_keepForm & MM_nextItem & Server.URLencode(Request.Form(MM_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) End If If (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) End If If (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) End If ' 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 Dim MM_keepMove Dim MM_moveParam Dim MM_moveFirst Dim MM_moveLast Dim MM_moveNext Dim MM_movePrev Dim MM_urlStr Dim MM_paramList Dim MM_paramIndex Dim MM_nextParam MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 1) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then MM_paramList = Split(MM_keepMove, "&") MM_keepMove = "" For MM_paramIndex = 0 To UBound(MM_paramList) MM_nextParam = Left(MM_paramList(MM_paramIndex), InStr(MM_paramList(MM_paramIndex),"=") - 1) If (StrComp(MM_nextParam,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & MM_paramList(MM_paramIndex) 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 = Server.HTMLEncode(MM_keepMove) & "&" End If MM_urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = MM_urlStr & "0" MM_moveLast = MM_urlStr & "-1" MM_moveNext = MM_urlStr & CStr(MM_offset + MM_size) If (MM_offset - MM_size < 0) Then MM_movePrev = MM_urlStr & "0" Else MM_movePrev = MM_urlStr & CStr(MM_offset - MM_size) End If %> 招生就业指导办公室

 

贵州警官职业学院专业及毕业生简介

▲  学院简介

    贵州警官职业学院是2000年5月经贵州省政府批准,由原贵州公安干部学院和原贵州政法管理干部学院合并组建而成的一所公安司法普通大专院校。学院占地800余亩,具有良好的学习、生活环境,学院教学设施完善、师资力量雄厚,现在教学系部(中心)12个,教研室41个,创办有荣获全国优秀社科学报称号的理论刊物《贵州警官职业学院学报》以及院报《贵州警院报》。专任教师316名中,有教授、副教授近百人,讲师百余人;外聘中国工程院院士、公安部刑事技术专家、中国人民公安大学校长、中国刑事警察学院院长、贵州民族学院院长、贵州大学副校长及中国人民大学、贵州师范大学的全国知名专家、学者14人;外请公安政法实战部门的专家69人任我院客座教授。近年来,我院教师共出版专著、主编或参编教材近300部;在各级刊物发表论文近2000篇;获省、部级科研立项课题26个;获国家专利5项。我院设有刑事技术(含痕迹检验方向)、侦查(含预审、禁毒、国内安全保卫方向)、经济犯罪侦查、公安管理(含文秘方向)、信息网络安全监察、治安管理(含特警方向)、交通管理、狱政管理(监所管理方向)、防火管理、法律、司法文秘、书记官、法律事务、涉外经济与法律、行政法律事务、计算机应用技术、社区管理、安全保卫(特保方向)等24个全日制专科专业及方向;另设有全国自学考试助学点和考点。学院教学训练设施完善,建有现代化专业射击场三个,游泳池、机动车训练场各一个;建有气相色谱、扫描电子显微镜、心理测试、刑事照相、数码照相、枪弹检测、法医物证、刑事化验、现场勘查、现场绘图、文检、指纹、显微镜、足迹棚、尸检、电脑机房、语音室、多媒体教室等20余个实验室以及法医活体检验中心和我省唯一的爆炸物品司法鉴定所;为学生德、智、体全面发展提供了良好的物质保障。

▲  专业介绍

一、公安类专业[学制三年]

    我院公安类专业招收有侦查(含预审、国保、禁毒方向)、治安管理(含特警方向)、公安管理(含文秘方向)、刑事技术(痕检方向)、狱政管理(监管方向)、经济犯罪侦查、公安计算机应用、交通管理专业。

    培养目标:培养适应现代公安工作需要,掌握本专业理论知识,具有较强应用能力的公安后备人才。

    就业方向:参加公务员考试合格后,进入各级公安部门工作。

二、法律[学制三年]

    培养目标:培养适应公安、司法工作需要、全面发展,掌握本专业的法学理论知识和应用能力以及必要的英语、计算机应用能力,为现代社会服务的法律应用性人才。

    就业方向:从事法官助理、检察官助理、司法助理工作;参加公务员考试合格后,从事国家行政机关工作;符合条件地区的毕业生,参加司法考试合格后,从事法官、检察官、律师工作;在企事业单位或机关、团体、基层组织中从事法律服务工作。

三、安全保卫[含特保方向,学制二年]

    培养目标:掌握法学基本理论、熟悉我国保卫工作的政策和相关法律、法规,有较强的社会主义法制观念和依法办事能力;掌握保卫学及相关学科的基本理论、保卫工作的程序、措施和方法;熟悉宾馆、物业、社区等行业和区域的安全、保卫、保密工作的有关知识和技能;掌握摩托车、汽车驾驶技能和擒拿、格斗、攀登、射击等技能;具有良好的组织协调和处置突发事件的能力,具备一定的外语和计算机应用能力。

    就业方向:从事企事业保卫处(科)以及特殊行业、特殊对象、特定目标的特别保卫工作。

四、司法文秘[学制二年,含书记官方向(学制三年)]

    培养目标:掌握法学基础知识、熟悉司法机关的办案程序,能够熟练地进行文字记录、查阅文件资料;具备熟练运用计算机进行庭审记录和管理卷宗档案的能力;具有依法调查并收集证据的能力。

    就业方向:从事司法文秘(书记官)工作或公司企业的文秘工作。

五、社区管理[学制二年]

    培养目标:学习和了解管理学、社会学的基本原理和有关人文科学的基本理论、基本知识;熟悉我国社区服务和管理的基本要求,以及发达国家社区管理的相关经验;掌握社区服务与管理的基本方法,具有较强的语言与文字表达能力、人际沟通能力、服务能力、信息获取能力以及分析和解决社区服务与管理问题的能力。

    就业方向:适合在民政、物管、街道、社区从事社会服务工作。

 

2005年毕业生情况统计表

专      业

学制

毕业生人数

专      业

学制

毕业生人数

公安管理

3

49

治安管理

3

50

刑事技术

3

102

治安管理(特警方向)

3

50

刑事侦查

3

110

经济犯罪侦查

3

103

公安计算机应用

3

149

法律

3

139

消防

3

146

司法文秘(书记官方向)

3

41

司法文秘

2

88

安全保卫

2

29

社区管理

2

68

城乡区域规划与管理

2

61

行政法律事务

2

36

 

 

 

 

2006年毕业生情况统计表

专      业

学制

毕业生人数

专      业

学制

毕业生人数

公安管理(文秘方向)

3

102

治安管理

3

102

刑事技术(痕检方向)

3

50

治安管理(特警方向)

3

52

刑事侦查

3

52

经济犯罪侦查

3

62

刑事侦查(国保方向)

3

52

公安计算机应用

3

109

刑事侦查(禁毒方向)

3

54

法律

3

560

司法文秘(书记官方向)

3

60

司法文秘

2

106

安全保卫(特保方向)

2

74

证券与保险(保险方向)

2

45

社区管理

2

98

计算机应用

2

47

 

2007年毕业生情况统计表

专      业

学制

毕业生人数

专      业

学制

毕业生人数

公安管理(文秘方向)

3

53

治安管理

3

62

刑事技术(痕检方向)

3

51

治安管理(特警方向)

3

45

刑事侦查

3

62

经济犯罪侦查

3

60

刑事侦查(国保方向)

3

54

公安计算机应用

3

103

刑事侦查(预审方向)

3

54

刑事侦查(狱政方向)

3

45

司法文秘(书记官方向)

3

102

交通管理

3

55

安全保卫

2

196

法律

3

749

社区管理

2

25

司法文秘

2

36

 

2008年毕业生情况统计表

专      业

学制

毕业生人数

专      业

学制

毕业生人数

警察管理

3

48

治安管理

3

60

刑事技术

3

52

治安管理(特警方向)

3

125

侦查

3

56

经济犯罪侦查

3

64

侦查(国内安全保卫方向)

3

47

信息网络安全监察

3

97

侦查(预审方向)

3

54

侦查(监管方向)

3

87

禁毒

3

45

交通管理

3

116

计算机应用技术

3

110

法律事务

3

838

防火管理

3

114

安全防范技术

2

88

法律文秘

3

148

社区管理与服务

2

55

书记官

3

50

     

 

 

Copyright © 2008 贵州警官职业学院 招生就业指导办公室

<% Reczsnews.Close() Set Reczsnews = Nothing %> <% Recjynews.Close() Set Recjynews = Nothing %>