<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <% '请尊重作者劳动成果不要删除以上信息 'chinaITinfo新闻系统3.0正式版 '主页:http://chinaitinfo.com '论坛:http://bbs.chinaitinfo.com '请尊重作者劳动成果不要删除以上信息 %> <% function ShowBold(theField) Set objRegExp= New RegExp objRegExp.Pattern="(" & Request("shuru") & ")" objRegExp.IgnoreCase=True objRegExp.Global=True ShowBold=objRegExp.Replace(theField,"$1") end function %> <% Dim rst Dim rst_numRows Set rst = Server.CreateObject("ADODB.Recordset") rst.ActiveConnection = MM_conn_news_STRING rst.Source = "SELECT * FROM t_type" rst.CursorType = 0 rst.CursorLocation = 2 rst.LockType = 1 rst.Open() rst_numRows = 0 %> <% Dim rss__varkkk rss__varkkk = "%" If (request("shuru") <> "") Then rss__varkkk = request("shuru") End If %> <% Dim rss__varxxx rss__varxxx = "n_title" If (request("fangshi") <> "") Then rss__varxxx = request("fangshi") End If %> <% set rss = Server.CreateObject("ADODB.Recordset") rss.ActiveConnection = MM_conn_news_STRING rss.Source = "SELECT n_id, n_title, n_author, n_content,n_date, n_tid, n_check, n_fname FROM t_news WHERE " + Replace(rss__varxxx, "'", "''") + " like '%" + Replace(rss__varkkk, "'", "''") + "%' and n_check = true ORDER BY n_date DESC" rss.CursorType = 0 rss.CursorLocation = 2 rss.LockType = 3 rss.Open() rss_numRows = 0 %> <% Dim rssetup Dim rssetup_numRows Set rssetup = Server.CreateObject("ADODB.Recordset") rssetup.ActiveConnection = MM_conn_news_STRING rssetup.Source = "SELECT * FROM t_setup" rssetup.CursorType = 0 rssetup.CursorLocation = 2 rssetup.LockType = 1 rssetup.Open() rssetup_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index Repeat1__numRows = -1 Repeat1__index = 0 rst_numRows = rst_numRows + Repeat1__numRows %> <% ' *** Recordset Stats, Move To Record, and Go To Record: declare stats variables Dim rss_total Dim rss_first Dim rss_last ' set the record count rss_total = rss.RecordCount ' set the number of rows displayed on this page If (rss_numRows < 0) Then rss_numRows = rss_total Elseif (rss_numRows = 0) Then rss_numRows = 1 End If ' set the first and last displayed record rss_first = 1 rss_last = rss_first + rss_numRows - 1 ' if we have the correct record count, check the other stats If (rss_total <> -1) Then If (rss_first > rss_total) Then rss_first = rss_total End If If (rss_last > rss_total) Then rss_last = rss_total End If If (rss_numRows > rss_total) Then rss_numRows = rss_total End If End If %> <% ' *** Recordset Stats: if we don't know the record count, manually count them If (rss_total = -1) Then ' count the total records by iterating through the recordset rss_total=0 While (Not rss.EOF) rss_total = rss_total + 1 rss.MoveNext Wend ' reset the cursor to the beginning If (rss.CursorType > 0) Then rss.MoveFirst Else rss.Requery End If ' set the number of rows displayed on this page If (rss_numRows < 0 Or rss_numRows > rss_total) Then rss_numRows = rss_total End If ' set the first and last displayed record rss_first = 1 rss_last = rss_first + rss_numRows - 1 If (rss_first > rss_total) Then rss_first = rss_total End If If (rss_last > rss_total) Then rss_last = rss_total End If End If %> <% Dim Repeat2__numRows Dim Repeat2__index Repeat2__numRows = (rssetup.Fields.Item("st_cnnu").Value) Repeat2__index = 0 rss_numRows = rss_numRows + Repeat2__numRows %> <% 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 = rss MM_rsCount = rss_total MM_size = rss_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 rss_first = MM_offset + 1 rss_last = MM_offset + MM_size If (MM_rsCount <> -1) Then If (rss_first > MM_rsCount) Then rss_first = MM_rsCount End If If (rss_last > MM_rsCount) Then rss_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 = 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 %> 北京大兴区农副产品流通协会
| 浏览商业机会 | 发布供求信息 | 每日最新信息 | 刊登网络广告 |

相关链接
中国农业信息网
北京市农产品产销信息网
北京市大兴区农业信息网
福建农产品信息网
北京帝园商城

北京市若干行业管理办法
供稿:协会办公室 加入时间:2004-4-23 7:54:37
    

第一条为提高饮食业、服务业、修理业、旅店业的经营服务水平,促进各该行业的发展,维护经营者和消费者的合法权益,制定本办法。
第二条在本市行政区域内经营下列饮食业、服务业、修理业、旅店业的企业和个体工商户(以下简称经营者),不论所有制和隶属关系,均应遵守本办法:
(一)饭庄、酒家、餐厅、饭馆、酒吧、咖啡厅、小吃店、饮食商亭和车摊等饮食业经营者。
(二)照相(含冲卷、洗印等专项业务)、洗染、理发、浴池等服务业经营者。
(三)修理民用电器、自行车、钟表、鞋、黑白铁制品、塑料制品、皮件、家具、照相机、摩托车、缝纫机、仪器仪表、制冷设备、办公用品和弹棉花,以及其它综合修理加工项目等修理业经营者。
(四)除涉外旅游饭店以外的旅馆、饭店和接待旅客住宿的招待所、客货栈、车马店等旅店业经营者。
第三条市商业委员会(以下简称市商委)是本市饮食、服务、修理、旅店业的行业主管部门,区、县商业委员会(以下简称区、县商委)负责本区、县的饮食、服务、修理、旅店业的行业管理工作。
第四条市和区、县商委行使下列行业管理职责:
(一)执行国家和本市有关行业管理的政策、法规、规章,保护经营者合法经营,协助工商、公安、卫生、物价等行政管理机关监督经营者执行有关的法律、法规、规章。
(二)制定企业等级标准、服务规范、操作规程、质量标准,按规定核定企业等级。
(三)制定行业的发展规划、计划,负责行业内外部的协调工作。
(四)组织行业技术培训,按规定组织实施行业的技师考评。
(五)组织技术、经营经验和信息交流,提高服务质量。
(六)维护消费者的合法权益。
(七)负责行业统计工作。
(八)指导行业协会的工作。
(九)行业管理的其他工作。
第五条经营者可自愿组成行业协会。行业协会的主要工作是:宣传贯彻国家有关的政策、法律、法规和规章,协助行业管理部门开展工作;反映经营者的意见、要求,抵制损害行业利益的违法行为,维护经营者的合法权益;接受经营者委托帮助协调经营者与各有关方面的关系;向经营者提供促进业务发展的服务。
第六条经营者开业,单位持上级主管机关证明,个人持其户籍所在地街道办事处或乡镇政府证明,向所在区、县商委提出申请,经审查符合下列条件的,取得行业从业资格证明:
(一)符合行业网点布局;
(二)经营场所布置符合行业规定的要求;
(三)饮食业应具备合格的餐厨设备、卫生消毒设备等制作条件;服务业应具备相应的服务设施和器具;修理业应具备相应的设备、材料、零配件、工具;旅店业应具备与业务相适应的服务场所和服务设施,并按企业等级标准和床位比例配齐相应的服务人员;
(四)主要技术或服务人员必须经行业管理部门考核,取得合格证。
第七条经营者取得工商行政管理机关核发的营业执照后,应在开业前将开业时间报所在区、县商委各案。
经营者转业、合并、分立、迁移或歇业,在工商行政管理机关办理变更登记或歇业手续后,应当在15日内向所在区、县商委备案并办理有关手续。
第八条经营者在经营活动中必须遵守法律、法规、规章和下列行业管理的规定:
(一)接受行业管理部门的监督检查,合法经营;
(二)不得伪造、涂改、转让、出售、租借从业资格证明和企业等级证书;
(三)营业场所的设备、设施和业务、技术人员的条件符合企业等级标准;
(四)执行行业服务规范、服务规程、质量标准,不准损害消费者合法权益;
(五)定期向所在区、县商委报送财务统计等报表。
第九条经营者应向行业管理部门缴纳管理费。管理费的具体标准和缴纳办法,按照本市有关规定执行。
第十条违反本办法第六条、第七条和第八条规定的,由市或者区、县商委责令停止违法行为、限期改正,并可处以警告、5000元以下罚款;情节严重的,处以5000元以上2万元以下罚款,并可取消其从业资格。
第十一条对违反本办法第九条,不按规定缴纳管理费的,责令限期改正;逾期不缴纳的,自限期缴纳之日起,按目加收应交数额1%的滞纳金。
第十二条本办法执行中的具体问题,由市商委负责解释。
第十三条本办法自1988年8月1日起施行。经市人民政府批准分别于1987年11月,15日和1988年3月1日在西城区试行的《关于对饮食服务修理业实行行业管理的试行办法》、《关于对旅店业实行行业管理的试行办法》同时废止。



版权所有 ? 北京大兴区农副产品流通协会