<%@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 %> 招生就业指导办公室

贵州警官职业学院二○○八年招生简章


一、学校概况 
      贵州警官职业学院(学校代码:12107)是2000年5月经贵州省政府批准,由原贵州公安干部学院和原贵州政法管理干部学院合并组建而成立的一所公安司法普通全日制大专院校,其主管部门为贵州省公安厅。学院占地800余亩,位于风光秀丽的贵阳市龙洞堡文化教育区,景色优雅,交通便利,具有良好的学习、生活环境,为学生德、智、体全面发展提供了良好的物质保障。
      学院现有教学系部(中心)12个,教研室41个,创办有荣获全国优秀社科学报称号的理论刊物《贵州警官职业学院学报》以及院报《贵州警院报》。专职教师316名中,有正高职称19人、副高职称106人、中级职称117人,外聘中国工程院院士、公安部刑事技术专家及省内外知名专家、学者14人为我院客座教授;外请公安政法实战部门的65名业务骨干作为我院的兼职教官。近年来,我院教师共出版专著、主编或参编教材近300部;在各级刊物发表论文近2000篇;获省、部级科研立项课题40个;获国家专利5项;获得贵州省高校唯一的国家精品课程。我院教学、科研、师资力量雄厚,设有贵州省高等教育自学考试辅导中心,省招生考试中心自学考试直属考点,学生在学习专科的同时还可以参加本科自学考试。学院教学训练设施完善,有现代化专业射击场三个,游泳池、机动车训练场各一个;建有气相色谱、扫描电子显微镜、心理测试、刑事照相、数码照相、枪弹检测、法医物证、刑事化验、现场勘查、现场绘图、文检、指纹、显微镜、足迹棚、尸检、计算机、语音室、多媒体教室等20余个实验室以及法医活体检验中心和具有司法鉴定权的司法鉴定中心,其中包括我省唯一的爆炸物品司法鉴定所;学院新建的12层2万多平米教学综合大楼、7千多平方米图书馆、4万多平方米学生公寓楼,并设有医务所及6500平方米学生食堂及其它配套设施。同时,警察模拟实战大楼建设也正在启动中。

二、招生计划
      学院2008年将招收法律事务、法律文秘、计算机应用技术、防火管理、安全防范技术(含特保方向)等6个全日制专科专业及方向学生2133名。详细专业计划及收费标准见附表:贵州警官职业学院2008年招生计划表。

三、招生对象:招收招收遵纪守法、身体健康的应、往届普通高中毕业生; 对报考安全防范技术(特保方向)的考生要求:身高:男 1.68米、女 1.58米;身体匀称、五官端正;有散打、搏击特长的考生,同等条件下优先录取。

四、报名与考试
1.报名:报考我院的应、往届高中毕业生,按照全国统一高考报名时间和要求,在常住户口所在地的县(市、区、特区)招生办设立的报名点办理报名手续。
2.考试:报考我院的应、往届高中毕业生,均需参加全国普通高等学校招生统一考试。

五、填报志愿: 填报我院安全防范技术专业的考生,应在高职志愿栏填写。

六、录取:
按照考生志愿优先录取第一志愿考生,第一志愿考生未录满时,再录取第二志愿考生。对于同等志愿考生从高分到低分择优录取。

七、收费标准及奖励措施
我院严格按照贵州省物价局、财政厅、教育厅批准的学费、住宿费等收费项目及标准收费。我院实行奖学金制度,依据学生综合考核成绩可享受相应等级奖学金。并根据国家及省教育厅有关精神,对贫困学生给予国家或省级贫困生助学金。

八、招生组织机构
我院设立招生办公室,接受学院党委、省教育厅招生考试中心的领导,负责学院的招生工作。

九、学生管理及学历证书的颁发
(一)普通专科专业学生入学后,实行警务化管理,统一着装。学生在规定的年限内,修完教学计划规定的内容,政治思想品德和各科成绩合格者,达到毕业要求,发给国家承认学历的、经教育部电子注册的贵州警官职业学院毕业证书。学生毕业后,在国家就业政策指导下,学校推荐、双向选择、自主择业。
(二)防火管理专业由我院与贵州省消防学校联合办学。学生入学后,在消防学校(贵阳市白云公园旁)就读,实行封闭式军事化管理,统一着装。学生在规定的年限内,修完教学计划规定的内容,政治思想品德和各科成绩合格者,达到毕业要求,发给国家承认学历的、经教育部电子注册的贵州警官职业学院毕业证书以及省公安厅颁发的《消防安全上岗证》。学生毕业后,在国家就业政策指导下,实行学校推荐,双向选择,自主择业。
(三)高职专业学生入学后,统一实行警务化管理,统一着装。学生修完规定课程,政治思想品德和各科成绩合格者,达到毕业要求,发给国家承认学历的、经教育部电子注册的贵州警官职业学院毕业证书。学生毕业后在国家就业政策指导下,学校推荐、双向选择、自主择业。

需了解我院招生信息及有关情况的考生,可登录我院网站(www.gzjgxy.com)的“招生就业”栏目进行查询。
咨询电话:0851—5400997、5406200、5400818
联系人: 梁老师   唐老师

附:贵州警官职业学院2008年招生计划表

 

贵州警官职业学院2008年分省招生计划

类别

专业名称

招生省

专业总计

浙江

湖南

广东

广西

重庆

四川

安徽

贵州

普通专科

法律事务

20

20

20

14

14

22

14

1076

1200

法律文秘

2

2

8

5

5

5

5

220

252

防火管理

2

2

4

4

4

5

4

175

200

计算机应用技术

2

2

4

3

3

4

3

220

241

高职 

安全防范技术

2

2

2

2

2

2

2

126

140

安全防范技术(特保)

2

2

2

2

2

2

2

86

100

合 计

30

30

40

30

30

40

30

1903

2133

 

 

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

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