%@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
%>
无标题文档
|
|
|
|
| 市安监站公告 | | | 通 知 各镇(区)城建办质量监督组、安全监督组: 为促进我市建设工程监督机构的管理,进一步实施网络化建设,加强市镇之间的相互联系,经研究决定专门为各质监组、安监组统一配备以下邮箱,并从2003年6月1日起开始使用,以后凡上报材料、业务联系等均可使用此邮箱,具体邮箱地址如下:
镇区 | 邮箱地址 | 镇区 | 邮箱地址 | 镇区 | 邮箱地址 | 镇区 | 邮箱地址 | 莞城 | gc@dgjsjd.net | 东城 | dc@dgjsjd.net | 南城 | nc@dgjsjd.net | 万江 | wj@dgjsjd.net | 石龙 | sl@dgjsjd.net | 石碣 | sj@dgjsjd.net | 石排 | sp@dgjsjd.net | 企石 | qs@dgjsjd.net | 茶山 | cs@dgjsjd.net | 横沥 | hl@dgjsjd.net | 东坑 | dk@dgjsjd.net | 常平 | cp@dgjsjd.net | 桥头 | qt@dgjsjd.net | 樟木头 | zmt@dgjsjd.net | 谢岗 | xg@dgjsjd.net | 清溪 | qx@dgjsjd.net | 凤岗 | fg@dgjsjd.net | 塘厦 | tx@dgjsjd.net | 黄江 | hjiang@dgjsjd.net | 大朗 | dl@dgjsjd.net | 寮步 | lb@dgjsjd.net | 虎门 | hmen@dgjsjd.net | 长安 | ca@dgjsjd.net | 厚街 | hjie@dgjsjd.net | 沙田 | st@dgjsjd.net | 大岭山 | dls@dgjsjd.net | 中堂 | zt@dgjsjd.net | 望牛墩 | wnd@dgjsjd.net | 麻涌 | mc@dgjsjd.net | 道滘 | dj@dgjsjd.net | 洪梅 | hmei@dgjsjd.net | 高埗 | gb@dgjsjd.net |
| |
|
|
<%
news.Close()
Set news = Nothing
%>