%@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
%>
关于发放《广东省建筑施工安全操作教育系列片(第一、二辑)》的通知
|
|
|
| |
|
| | |
关于发放《广东省建筑施工安全操作教育
系列片(第一、二辑)》的通知
各镇街安监组,各施工、监理企业:
为贯彻落实省住建厅《关于组织征订〈广东省建筑施工安全操作教育系列片(第一、二辑)〉的通知》(粤建质函[2011]448号)要求,进一步加强建筑施工从业人员安全教育培训工作,我站组织征订了一些《广东省建筑施工安全操作教育系列片(第一、二辑)》(以下简称《系列片》),决定免费发放给各企业。现将有关事宜通知如下:
一、由市安监站负责发放《系列片》的相关工作。各镇街安监组,各建筑施工企业、监理企业应在8月12日前自行前往市安监站一楼门卫室领取《系列片》,每企业限领一套。
二、在建房屋、市政工程和轨道交通工程的项目部应自行联系订购,并组织安全生产管理人员、施工作业人员观看《系列片》,做好学习记录。(订购联系方式:省建筑安全协会范伟文;联系电话:(020)81195060;传真:(020)81253013)
三、安监机构在安全检查时,将对受检工程项目提供的观看《系列片》记录材料作为相关单位开展安全生产教育培训的一项内容进行抽查。
附件一:施工企业名单
附件二:监理企业名单
东莞市建设工程安全监督站
二〇一一年七月二十六日 |
|
|
|
<%
news.Close()
Set news = Nothing
%>