<%@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 %>
| 首 页 | 凉州要情 | 统计动态 | 统计信息 | 统计分析 | 高层瞭望 | 他山之石 | 政策法规 | 乡镇名片 |

== 区 辖 镇==

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

  谢河乡位于城区东南太平洋8公里处,乡域面积42平方公里,基中耕地面积3万多亩。辖四上、五坝、新路、四中、五中、武家寨、谢河7个村,68个村民小组,总人咒骂13544人。乡政府驻武寒寒村。2001年,完成农业总产值2467万元,财政收入乡随俗2万元。乡镇企业总产值11030万元,农民人均纯收入2610元。有中小学10所,在校学生2785人。有卫生院1处。
谢河乡地势平坦,土地把沃,兰新铁路、国道312线横贯东西,乡村公路四通八达。利用优越的沿路优势,通过招商引次,积极发展乡镇企业、个体私营企业,目前全乡有各类企业123家。乡镇企业,已成为谢河乡经济发展的龙头,特别是谢河机械厂誉满河西,生产的各种类型的磨面机获得过八项专利。乡镇企业的快速发展带动了二三产业的快速发展,形成了以乡政府为中心,东西长5公里,南北宽2公里,集住宿、修理、餐饮、商贸为一体的小集镇,小城镇建设初具规模。种植业、养殖业和以日光温室为主的蔬菜产业发展迅速。目前已建成各种类型的规模养殖点20处,发展各种类型的规模养殖户1030户,发展特种养殖7户。日光温室落户山水灌区,具有较大的潜力,短短几年已发展了205亩,其品种也由单一的黄瓜向西葫芦、西红柿、西瓜、食用菌等多品种、多茬口发展。
  谢河乡根据地域优势,确定了今后的发展目标:发展以农副产品加工为主体的集修理、餐饮、商贸为一体的小城镇,发展节水型农业,建成无公害日光温室蔬菜生产区和肉类生产基地。以“修水利,强基础设施;抓科技,增加农民收入;上乡企,培财政税源;搞商贸,推动商业流通”为基本思路,促进两个文明建设的健康发展,使谢河乡这颗国道明珠更加璀璨夺目。

  庙山乡地处城区东南35公里处,该地有一山,名曰凤凰山,山形好似凤凰张翅,山上有一寺庙,“庙山”一名由此而来。乡域面积75平方公里,其中耕地面积12200亩。辖石岗、李府、叶家、庙山、付相庄、樱桃沟6个村,41个村民小组,总人口7834人。乡政府驻叶家村。 2001年,完成农业总产值1083万元,财政收入47万元,乡镇企业总产值3030万元,农民人均纯收入1800元。有中小学6所,在校学生1786人;有卫生陆军1处。乡镜内的鱼儿山汉墓为市级文物重点保护单位。西部的冬青顶,海拔3269.9米,是全区最高峰,地势广阔,山峰突兀俊秀,苍松翠柏,景色秀丽,是炎炎夏日人们休闲娱乐、度假的理想之地。
经过多年的稳步发展,庙山乡经济建设取得了一定成就。制种业发展初具规模,已建成制种示范区3个,制种面积达500多亩。香菇为主的食用菌产业、日光温室蔬菜产业悄然兴起,成为农民增加收入的有效途径。养殖业以家庭散养为基础,规模养殖为重点,贩运为龙头,发挥沿山优势,大力推广暖棚养殖。规模养殖户达30户,年出栏牛1500头,羊3200头,猪7584头。劳务人员遍布新疆、青海、宁夏等地,劳务输出收入在全乡经济中占有一定的份额。
庙山乡根据当前经济发展的需要,确定了“以不康建设揽全局,节水增粮夯基础,重视畜牧抓劳务,培植税源增收入”的工作思路,坚持“统一规划,连片种植,农牧并重,综合发展”的原则,努力开发集餐饮服务、商贸流通为一体的商业开发区,推动第三产业的持续发展,促进全乡经济持续、快速、稳定发展。

  2004年8月,庙山乡并入谢河镇。

  将庙山乡撤并于谢河镇,合并后的谢河镇辖13个村民委员会,115个村民小组,总人口21111人,区域面积约103平方公里。

 

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