%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <%
Dim news
Dim news_numRows
Set news = Server.CreateObject("ADODB.Recordset")
news.ActiveConnection = MM_news_STRING
news.Source = "SELECT title, wenhao, time FROM news ORDER BY time DESC"
news.CursorType = 0
news.CursorLocation = 2
news.LockType = 1
news.Open()
news_numRows = 0
%> <%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = 15
Repeat1__index = 0
news_numRows = news_numRows + Repeat1__numRows
%> <%
Dim MM_paramName
%> <%
' *** 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
%>
无标题文档
|
| 质监站 | 首页 | 信息动态 | 政策法规 | 标准规范 | 办事指南 | 行业信息 | 下载专区 | 双优工程 | 拆除工程 | 安全知识 | 安全教育 |
|
|
| 市安监站公告 | | |
东建安函〔2008〕
1号
关于召开建设工程施工安全监督工作座谈会的通知
各镇(街)安监组、松山湖质安站、虎门港安监组、生态园规划建设科:
为贯彻落实省建设厅、市建设局的建设工程施工安全工作会议精神,进一步完善和落实施工安全监督管理措施、推进施工安全监督工作的深入开展。经建设局同意,我站研究决定于近期召开建设工程施工安全监督工作座谈会。现将具体事项通知如下:
一、会议内容
座谈各镇(街)在开展施工安全监督工作中遇到的难点、存在的问题以及提出意见、建议(详附件)。
二、参加会议人员
各镇(区)规划建设办公室主管施工安全监督的领导(副主任)和安监组组长(或负责人)2人。
三、会议安排
座谈会分六组举行。
第一组
参加镇区:松山湖、万江、塘厦、沙田、桥头、东坑
会议地点:松山湖管委会办公区A4栋一楼
联系人:钟锦堆,电话:13602332638
会议时间:2008年11月13日上午9-12时
第二组
参加镇区:南城、茶山、黄江、麻涌、樟木头、虎门港
会议地点:南城规划建设办公室六楼会议室
联系人:刘德伟,电话:13728309951
会议时间:2008年11月13日下午3-6时
第三组
参加镇区:寮步、石龙、石排、长安、大朗、道滘
会议地点:寮步规划建设办公室三楼会议室
会议时间:2008年11月14日上午9-12时
联系人:罗泽民,电话:13602313607
第四组
参加镇区:虎门、石碣、清溪、中堂、横沥
会议地点:虎门镇政府一楼小会议室
会议时间:2008年11月14日下午3-6时
联系人:袁志军,电话:13602356363
第五组
参加镇区:莞城、谢岗、常平、洪梅、大岭山、生态园
会议地点:莞城区办事处五楼会议室
会议时间:2008年11月17日上午9-12时
联系人:温裕民,电话:13602356313
第六组
参加镇区:厚街、东城、企石、望牛墩、凤岗、高埗
会议地点:厚街规划建设办公室七楼会议室
会议时间:2008年11月17日下午3-6时
联系人:彭水莲,电话:13711933999
希各与会人员准时参加。
附件:《施工安全监督工作座谈会调研提纲》
东莞市建设工程安全监督站
二○○八年十一月六日
(联系人:韩前明,电话:13609697058)
| |
|
|
<%
news.Close()
Set news = Nothing
%>