%@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年8月11日举办一期建筑施工脚手架、模板工程知识讲座,时间为半天,相关事项通知如下:
一、讲座内容
建筑施工脚手架、模板工程相关规范、标准、施工当中的常见问题及注意事项。
二、主讲老师
朱国梁(江苏华建深圳分公司副总工)。
三、讲座时间、安排
8月11日,具体安排为:
1、上午9:00~12:00,参加人员:全市所有的安监组长和安监员、各监理单位选派一名总监参加;
2、下午2:30~5:30,参加人员:各施工单位技术负责人和主管安全生产负责人共2人参加。
四、地点:建设局培训中心大会议室。
五、费用:免费。
请上述有关单位准时派员参加,市安监站联系人:胡柒兰,联系电话:22981323。
东莞市建设工程安全监督站
二○○八年八月五日
附:关于兴办建筑施工脚手架、萨模板工程知识讲座的通知 |
|
|
|
<%
news.Close()
Set news = Nothing
%>