<%@LANGUAGE="VBSCRIPT"%> <% dim qxjb qxjb = session("qxjb") 'qxjb =1 if isEmpty(qxjb) then response.write "权限级别无效!" end if set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_STAT_STRING Recordset1.Source = "select xxid,xxbt,fbrq,ksmc from t_dtxx,t_ksbm where t_dtxx.ksbm = t_ksbm.ksbm and xxlbbm='01' order by fbrq desc" Recordset1.CursorType = 1 Recordset1.CursorLocation = 2 Recordset1.LockType = 3 Recordset1.Open() Recordset1_numRows = 0 %> <% Dim Repeat1__numRows Repeat1__numRows = 15 Dim Repeat1__index Repeat1__index = 0 Recordset1_numRows = Recordset1_numRows + Repeat1__numRows dim CurrentPage CurrentPage = 1 %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables ' set the record count Recordset1_total = Recordset1.RecordCount Recordset1.PageSize = Repeat1__numRows pgcount = Recordset1.Pagecount ' 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 If (Recordset1_last > Recordset1_total) Then Recordset1_last = Recordset1_total If (Recordset1_numRows > Recordset1_total) Then Recordset1_numRows = Recordset1_total End If %> <% ' *** Move To Record and Go To Record: declare variables 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 r = Request.QueryString("index") If r = "" Then r = Request.QueryString("offset") If r <> "" Then MM_offset = Int(r) CurrentPage = MM_offset \ Repeat1__numRows +1 ' 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 i = 0 While ((Not MM_rs.EOF) And (i < MM_offset Or MM_offset = -1)) MM_rs.MoveNext i = i + 1 Wend If (MM_rs.EOF) Then MM_offset = i ' set MM_offset to the last possible record 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 i = MM_offset While (Not MM_rs.EOF And (MM_size < 0 Or i < MM_offset + MM_size)) MM_rs.MoveNext i = i + 1 Wend ' if we walked off the end of the recordset, set MM_rsCount and MM_size If (MM_rs.EOF) Then MM_rsCount = i If (MM_size < 0 Or MM_size > MM_rsCount) Then MM_size = MM_rsCount 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 i = 0 While (Not MM_rs.EOF And i < MM_offset) MM_rs.MoveNext i = i + 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 If (Recordset1_last > MM_rsCount) Then Recordset1_last = MM_rsCount 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 ' create the list of parameters which should not be maintained MM_removeList = "&index=" If (MM_paramName <> "") Then MM_removeList = MM_removeList & "&" & MM_paramName & "=" MM_keepURL="":MM_keepForm="":MM_keepBoth="":MM_keepNone="" ' add the URL parameters to the MM_keepURL string For Each Item In Request.QueryString NextItem = "&" & Item & "=" If (InStr(1,MM_removeList,NextItem,1) = 0) Then MM_keepURL = MM_keepURL & NextItem & Server.URLencode(Request.QueryString(Item)) End If Next ' add the Form variables to the MM_keepForm string For Each Item In Request.Form NextItem = "&" & Item & "=" If (InStr(1,MM_removeList,NextItem,1) = 0) Then MM_keepForm = MM_keepForm & NextItem & Server.URLencode(Request.Form(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) if (MM_keepURL <> "") Then MM_keepURL = Right(MM_keepURL, Len(MM_keepURL) - 1) if (MM_keepForm <> "") Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1) ' 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 MM_keepMove = MM_keepBoth MM_moveParam = "index" ' if the page has a repeated region, remove 'offset' from the maintained parameters If (MM_size > 0) Then MM_moveParam = "offset" If (MM_keepMove <> "") Then params = Split(MM_keepMove, "&") MM_keepMove = "" For i = 0 To UBound(params) nextItem = Left(params(i), InStr(params(i),"=") - 1) If (StrComp(nextItem,MM_moveParam,1) <> 0) Then MM_keepMove = MM_keepMove & "&" & params(i) 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 = MM_keepMove & "&" urlStr = Request.ServerVariables("URL") & "?" & MM_keepMove & MM_moveParam & "=" MM_moveFirst = urlStr & "0" MM_moveLast = urlStr & "-1" MM_moveNext = urlStr & Cstr(MM_offset + MM_size) prev = MM_offset - MM_size If (prev < 0) Then prev = 0 MM_movePrev = urlStr & Cstr(prev) %> 泸州统计信息网
  泸州概况
  民族宗教
  城市建设
  历史沿革
  行政区划
  自然资源
  经济产业
  社会事业
<首页走进泸州图片新闻统计动态统计公报调查分析统计数据政务公开法律法规统计知识

<民族>

 1、基本情况
    泸州是一个多民族散杂居地区,地处四川盆地山区边沿,与云南、贵州省交界。全市有46个少数民族成份,有15300多户少数民族,少数民族人口7.22万人,占全市总入口的1.6%,占全省散杂居少数民族人口的11%,其中:苗族55719人,彝族7955人,回族1549人,300人以上的有满族,200人以上的有土家族,100人以上的有藏族,50人以上的有维吾尔族,另外还有朝鲜族、侗族、瑶族、傈僳族、佤族、高山族、拉祜族、水族、东乡族、纳西族、景颇族、土族、羌族、布朗族、撤拉族、锡伯族、普米族、怒族、俄罗斯族、京族、赫哲族、基诺族、哈萨克族、未识别民族羿人300余入。市辖区有9个民族乡<古蔺县的马嘶苗族乡、箭竹苗族乡、乌龙苗族乡、大寨苗族乡;叙永县的合乐苗族乡、白腊苗族乡、枧槽苗族乡、石坝彝族乡、水潦彝族乡),占全省民族乡的9%,有民族村寨174个,少数民族人口在1000人以上的其他乡镇有21个。少数民族的分布状况是:古蔺县27600人,叙永县39200人,合江县3342人,江阳区2100人,泸县986人,纳溪区868人,龙马潭区200人。从分布状况看,90%以上少数民族居住在古蔺、叙永两个国家贫困县的偏辟边远的高寒山区、石山区和贫穷的赤水河谷地带,山高坡陡,土地瘦弱,交通不便,信息不灵,经济文化比较落后。
2、民族节日和风俗:
      苗族:是一个能歌善舞的民族,独具一格的芦笙舞是苗族人民最喜爱的舞蹈。苗族的节日有:苗年、春节、踩山节、四月八、吃新节等。我市古蔺县大寨苗族乡每年农历正月13至15日都要举办苗族踩山节。
    彝族:是一个热情好客的民族,常以酒待客,有“无酒不成敬意”之说。如果主人敬酒不喝,则被认为是看不起主人。彝族的节日是火把节,在每年农历6月24日前后举行。
      回族:是一个信仰伊斯兰教的民族。饮食以米面为主,吃牛、羊、鸡等,忌食猪、狗、马的肉,不吃一切动物的血和自死之动物。回族普遍实行土葬,要请阿 主持殡葬,将死者净身后用白布包身土葬,用移匣运入墓地。回族的主要节日有:开斋节、宙尔邦节、圣纪节等,每年开斋节我市政府都要规定禁猪民族放假一天。

  <宗教>

泸州市有佛教、天主教、基督教、伊斯兰教、道教五大宗教。有开放场所69处,信教群众20余万人。

   宗教组织:泸州有泸州市伊斯兰教协会、沪州市天主教爱国会、泸州市基督教三自爱国运动委员会、泸州市佛教协会。各宗教堂点分别都有管理组织。

   主要宗教节日:伊期兰教有“开斋节”、古尔邦节和圣纪节;天主教有耶酥复活瞻礼、圣神降临瞻礼、圣母升天瞻礼和耶统圣诞瞻礼;基督教有基督纪元、圣诞节、复活节、主日;佛教有“佛诞节”、 “佛成道日”、 “孟兰盆节”、 “观音节”;道教有“三会、三元”、 “戍日”、 “祖师诞辰”。

   主要宗教活动:拜佛、诵经、讲经、受戒、灌项、朝圣、开光、斋酿、封斋、祷告、礼拜、讲道、受洗、圣餐、弥撒、终傅、婚礼、追思、唱诗等。