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

== 区 辖 镇==

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

   新华乡位于城区南15公里处的祁连山东北麓,乡域面积43平方公里,其中耕地面积23199亩。辖缠山、夹河、李府、头坝、徐庄、新华、马莲、马蹄、深沟9个村,73个村民小组,总人口3314人。乡政府驻头坝村。2001年,完成农业总产值4159万元,财政收入89万元,乡镇企业总产值3414万元,农民人均纯收入2421元。有中小学11所,校学生2799人;有卫生院1处。乡内磨嘴子汉墓群是省级文物保护单位,以出土大批汉简、木雕、丝、麻、草编制物等珍贵文物而闻名于世;亥母洞寺以出土大量西夏经卷、文书陶器等文物驰名中外。其中《维摩诘所说经》对研究我国活字印刷术的发展具有世界意义。
   近年来,乡上按照“结构调优、质量调好、效益调高、农民调富”的思路,面向市场,围绕特色,立足资源,以农民增收为中心,抓农业内部结构调整,重点采取二压三扩措施(压夏、压粮、扩秋、扩经、扩草),改变目前的粮经二元结构为粮经饲三元结构。小麦为主的夏禾作物面积达到了11253亩,以蔬菜为主的经济作物面积达到了5000亩,夏秋比例为46:54,粮经比例为63:37,地膜覆盖面积达到了12200亩,良种推广率达到了95%,牧业方面按照“以牛为主、长短结合、五良配套、科技增效”的要求,大力发展牛、羊为主的食草蓄牧业。截止目前,规模养殖户已达910户,牛、羊、猪存栏比去年同期分别净增980头、2460只、2970头。乡镇企业坚持走以农副产品加工为主、个体私营为主、小型项目为主的路子,动员群众兴办规模小、投资少、见效快的项目52个,目前已形成了以全省大型二档建筑企业全圣建筑公司为龙头的乡镇企业,乡镇企业固定资产达2800万元。乡镇企业的发展促进了农村经济结构调整,增加了农民收入。
  在新形势下,新华乡立足改革求发展,实施内调外引战略,突出抓好生态农业建设,推进农业产业化步伐,扶持乡镇企业上规模、上档次,积极发展文化旅游业,促进社会经济快速、协调、健康发展。

  南营乡位于凉州区西南,地处祁连山北麓、金塔河畔,以境内古代曾有“南把截营堡”而得名。乡域面积96平方公里,其中耕地面积5087亩。辖南营、穿城、青嘴、石关4个行政村,27个村民小组,总人口人。乡政府驻南营村。2001年,完成农业总产值1294万元,财政收入27万元,乡镇企业总产值2010万元,农民人均纯收入2240万元,财政收入27万元,,乡镇企业总产值2010万元,农民人均纯收入2240元。有中小学8所,在校学生920人;有卫生院1处。乡内有省级文物保护单位2处,其中青嘴喇嘛湾先后出土有唐代弘化公主墓志及慕容氏墓志,对研究唐朝民族关系史和吐谷浑民族的历史文化等方面,提供了非常珍贵的资料。祁连山白雪皑皑,山下树木葱郁,南营水库雄伟壮观,碧波荡漾;弘化公主墓坐落在水库西岸,是旅游观光、文物考古的重要去处。
  近年来,养殖业发展迅速,其品质和品种有了较大的改善。全乡养殖绒山羊7400多只,年产山羊绒2吨;细毛羊5200多只,年产优质细毛7.8吨;年出栏羊8400多只,年产优新鲜羊肉12.5吨。规模养殖户达89户,成为南营乡一大特色优势产业和农民脱贫致富的主要途径。以南营水库和弘化公主墓群为依托的旅游业逐渐兴起,带动了本地二、三产业的发展。南营乡今后发展思路是:狠抓基础设施建设,加大招商引资力度,实行科持偿乡战略,培育和壮大乡镇企业,发展以日光温室为主的蔬菜业、以规模养殖为主的畜牧业、以弘化公主墓志及南营水库为依托的旅游业,推动全乡经济建设和社会各英事业的健康发展。
将南营乡撤并于新华乡,合并后的新华乡辖13个村民委员会,100个村民小组,总人口18890人,区域面积约153平方公里。

 

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