<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim Recordset1_total Dim Recordset1_first Dim Recordset1_last ' set the record count Recordset1_total = Recordset1.RecordCount ' set the number of rows displayed on this page If (Recordset1_numRows < 0) Then Recordset1_numRows = Recordset1_total Elseif (Recordset1_numRows = 0) Then Recordset1_numRows = 1 End If ' set the first and last displayed record Recordset1_first = 1 Recordset1_last = Recordset1_first + Recordset1_numRows - 1 ' if we have the correct record count, check the other stats If (Recordset1_total <> -1) Then If (Recordset1_first > Recordset1_total) Then Recordset1_first = Recordset1_total End If If (Recordset1_last > Recordset1_total) Then Recordset1_last = Recordset1_total End If If (Recordset1_numRows > Recordset1_total) Then Recordset1_numRows = Recordset1_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 = Recordset1 MM_rsCount = Recordset1_total MM_size = Recordset1_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 Recordset1_first = MM_offset + 1 Recordset1_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (Recordset1_first > MM_rsCount) Then Recordset1_first = MM_rsCount End If If (Recordset1_last > MM_rsCount) Then Recordset1_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 %>
| 首 页 | 凉州要情 | 统计动态 | 统计信息 | 统计分析 | 高层瞭望 | 他山之石 | 政策法规 | 乡镇名片 |

== 区 辖 镇==

== 区 辖 乡==
   
您现在的位置:首 页 >> 乡镇名片 >>武南镇
高坝镇概况

   高坝镇位于城区东南郊,国道312线和兰新铁路穿境而过。镇域面积55平方公里,其中耕地面积46534亩。辖18个行政村,即:新关、一时在、碌碡、红崖、路南、高坝、马儿、新庙、台庄、同益、同心、丁家园、红中、沿沟、新民、二坝、石岭、建设村,下设186个村民小组,总人口人,其中城镇人口4648人。镇政府驻牛家花园。城区2路海石公交车通往镇政府驻地。2001年,完成农业总产值10669万元。财政收入302万元,乡镇企业总产值94536万元,农民人均纯收入2986元。有中学22所,在校学生7893人;有聋哑学校1所,卫生院1处,卫生院1处。镇内有市级文物保护单位牛家花无(清代两江总督牛鉴故居)、唐翟公墓。
   乡镇企业的发展突飞猛进,已形成支柱产业优势。改革开放以来,乡镇企业规模不断扩大,效益逐年提高。全国大型一档乡镇企业一甘肃荣华实业(集团)股份有限公司,拥有固定资产15亿元,职工8000多人。已成为全区乃至全市农产品加工的骨干企业。乡镇企业的发展已占据了全镇经济“四分天下有其三”的重要位置,成为农民增收的主要渠道之一。
日光温室发展迅速,具有较大的规模优势。日光温室的发展从引进、试种成功到目前规模,其品种由单一的黄瓜向辣椒、西葫芦、西瓜、茄子、西红柿、食用菌等多品种、多茬口方向发展,成为高坝一大特色优势产业。全镇日光温室面积累计达到3030亩,据测算,日光温室实现的经济收入已占农民纯收入的30%。
规模养殖稳步发展,特种养殖取得重大突破。养殖业发展迅速,其品质和品种有了较大的改善;建立马儿规模养猪示范点,引进三元杂交优良品种4个;建成年产1000头瘦肉型良种猪繁育场和年出栏500头的丁家园养殖场。特禽养殖发展较快,引进美蛙、肉狗、七彩山鸡、贵妃鸡等十几个特禽品种,并逐步推广。规模养殖户已达4628户。
   非公有制经济蓬勃发展,小城镇建设步伐加快。高坝镇具有优越的沿路优势,已建成以国道312线为依托,以镇政论所在地牛家花园什字为中心,南北辐射1.5公里,东西辐射2公里的花园集镇开发区,成为集停车住宿、餐饮娱乐、商贸流通为一体的新型集镇开发区。以集镇开发区和新关开发区为依托的非公制经济得到了长足发展,私营企业达942户,其中2001年新发展个体私营企业156户,新增投资1182万元,新增营业收入1050万元,新增利税150万元。
在实施西部大开发中,高坝镇根据区位优势和地域优势,确定了今后发展的基本思路:以“再造”总打电话揽全局,以市场为导向,以发展特色优势产业为重点,以农民增收、企业增效、财政增税为目标,抢抓机遇,力争在基础设施建设、经济结构调整、招商引资、小城镇建设和科技兴镇等五个方面取得成效,不断培育和壮大乡镇企业,积极推进以日光温室为主的蔬菜生产,以规模养殖为主的畜牧业,以小区建设为依托的二三产业,以香菇生产为主的食用菌生产支柱产业,积极发展旅游业,推动全镇经济建设和社会各项事业健康发展。

   六坝乡位于城区东南8公里处,因地处杂木河第六坝而得名。乡域面积41平方公里,其中耕地面积26840亩。辖柏树、阳春、小七坝、楼庄、六坝、严家、蔡家、十三里、刘畦、蜻蜒10个行政村,89个村民小组,总人口16121人。乡政府驻六坝村。2001年,完成农业总产值5115万元,财政收入17万元,乡镇企业总产值4712万元,农民人均纯收入2312元。有中学1所,小学11所,在校学生3139人;有卫生院1处。乡内十三里堡汉墓为市级文物保护单位;清凉寺、东造竺寺为凉州名刹,历史悠久,香火旺盛。
近年来,日光温室发展迅速,已逐步形成支柱产业优势。种植品种有辣椒、西葫芦、西瓜、茄子、西红柿、食用菌等多个品种,全乡日光温室面积达320亩,已成为农民增收的一大支柱产业。大白葱、西瓜种植面积达600亩。六坝乡的大白葱不仅畅销本地,而且远销青海、兰州等地。规模养殖稳步发展,规模逐步扩大。建立了刘畦二组、蔡庄四组、十三里村二组3个规模养猪示范点和严庄村三组、四组肉牛养殖示范组及小七坝村养鸡示范组。
   进入新世纪,六坝乡提出壮大支柱产业,走可持续发展的特色经济的路子,不断扩大以大葱为主的特色农业,以日光温室为主的蔬菜产业,提高禽畜规模化养殖水平,大力发展乡镇企业,促进全乡经济建设快速健康发展。

   2004年8月,六坝乡并入高坝镇。

   将六坝乡撤并于高坝镇、武南镇,该乡原辖柏树庄村民委员会及其所属的4个村民小组,684人划归武南镇管辖,合并后的武南镇辖8个社区居民委员会,17个村民委员会,134个村民小组,总人口58443人,区域面积83平方公里。原六坝乡所辖小七坝、严家、六坝、十三里堡、楼庄、阳春、刘畦、蔡家、蜻蜓等9个村民委员会及其所属的86个村民小组,15475人划归高坝镇管辖,合并后的高坝镇辖26个村民委员会,258个村民小组,总人口55223人,区域面积约93平方公里。

 

| 设为首页 | 加入收藏 | 联系站长 | 版权申明 |
主办:凉州区统计局
凉州区信息中心提供技术支持
Copyright © 2005 凉州统计信息网 All Rights Reserved