%@LANGUAGE="VBSCRIPT"%>
<%
' *** Edit Operations: declare variables
Dim MM_editAction
Dim MM_abortEdit
Dim MM_editQuery
Dim MM_editCmd
Dim MM_editConnection
Dim MM_editTable
Dim MM_editRedirectUrl
Dim MM_editColumn
Dim MM_recordId
Dim MM_fieldsStr
Dim MM_columnsStr
Dim MM_fields
Dim MM_columns
Dim MM_typeArray
Dim MM_formVal
Dim MM_delim
Dim MM_altVal
Dim MM_emptyVal
Dim MM_i
MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
If (Request.QueryString <> "") Then
MM_editAction = MM_editAction & "?" & Server.HTMLEncode(Request.QueryString)
End If
' boolean to abort record edit
MM_abortEdit = false
' query string to execute
MM_editQuery = ""
%>
<%
' *** Redirect if username exists
MM_flag="MM_insert"
If (CStr(Request(MM_flag)) <> "") Then
MM_dupKeyRedirect="../../My%20webs/admin/loginerror.htm"
MM_rsKeyConnection=MM_conn_STRING
MM_dupKeyUsernameValue = CStr(Request.Form("userpass"))
MM_dupKeySQL="SELECT userpass FROM js WHERE userpass='" & MM_dupKeyUsernameValue & "'"
MM_adodbRecordset="ADODB.Recordset"
set MM_rsKey=Server.CreateObject(MM_adodbRecordset)
MM_rsKey.ActiveConnection=MM_rsKeyConnection
MM_rsKey.Source=MM_dupKeySQL
MM_rsKey.CursorType=0
MM_rsKey.CursorLocation=2
MM_rsKey.LockType=3
MM_rsKey.Open
If Not MM_rsKey.EOF Or Not MM_rsKey.BOF Then
' the username was found - can not add the requested username
MM_qsChar = "?"
If (InStr(1,MM_dupKeyRedirect,"?") >= 1) Then MM_qsChar = "&"
MM_dupKeyRedirect = MM_dupKeyRedirect & MM_qsChar & "requsername=" & MM_dupKeyUsernameValue
Response.Redirect(MM_dupKeyRedirect)
End If
MM_rsKey.Close
End If
%>
<%
' *** Insert Record: set variables
If (CStr(Request("MM_insert")) = "form1") Then
MM_editConnection = MM_conn_STRING
MM_editTable = "js"
MM_editRedirectUrl = "../../My%20webs/admin/main.asp"
MM_fieldsStr = "username|value|userpass|value"
MM_columnsStr = "username|none,none,NULL|userpass|none,none,NULL"
' create the MM_fields and MM_columns arrays
MM_fields = Split(MM_fieldsStr, "|")
MM_columns = Split(MM_columnsStr, "|")
' set the form values
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
Next
' append the query string to the redirect URL
If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
Else
MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
End If
End If
End If
%>
<%
' *** Insert Record: construct a sql insert statement and execute it
Dim MM_tableValues
Dim MM_dbValues
If (CStr(Request("MM_insert")) <> "") Then
' create the sql insert statement
MM_tableValues = ""
MM_dbValues = ""
For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
MM_formVal = MM_fields(MM_i+1)
MM_typeArray = Split(MM_columns(MM_i+1),",")
MM_delim = MM_typeArray(0)
If (MM_delim = "none") Then MM_delim = ""
MM_altVal = MM_typeArray(1)
If (MM_altVal = "none") Then MM_altVal = ""
MM_emptyVal = MM_typeArray(2)
If (MM_emptyVal = "none") Then MM_emptyVal = ""
If (MM_formVal = "") Then
MM_formVal = MM_emptyVal
Else
If (MM_altVal <> "") Then
MM_formVal = MM_altVal
ElseIf (MM_delim = "'") Then ' escape quotes
MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
Else
MM_formVal = MM_delim + MM_formVal + MM_delim
End If
End If
If (MM_i <> LBound(MM_fields)) Then
MM_tableValues = MM_tableValues & ","
MM_dbValues = MM_dbValues & ","
End If
MM_tableValues = MM_tableValues & MM_columns(MM_i)
MM_dbValues = MM_dbValues & MM_formVal
Next
MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"
If (Not MM_abortEdit) Then
' execute the insert
Set MM_editCmd = Server.CreateObject("ADODB.Command")
MM_editCmd.ActiveConnection = MM_editConnection
MM_editCmd.CommandText = MM_editQuery
MM_editCmd.Execute
MM_editCmd.ActiveConnection.Close
If (MM_editRedirectUrl <> "") Then
Response.Redirect(MM_editRedirectUrl)
End If
End If
End If
%>
<%
' *** Validate request to log in to this site.
MM_LoginAction = Request.ServerVariables("URL")
If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString)
MM_valUsername=CStr(Request.Form("username"))
If MM_valUsername <> "" Then
MM_fldUserAuthorization="编号"
MM_redirectLoginSuccess="../../My%20webs/admin/main.asp"
MM_redirectLoginFailed="../../My%20webs/admin/loginerror.htm"
MM_flag="ADODB.Recordset"
set MM_rsUser = Server.CreateObject(MM_flag)
MM_rsUser.ActiveConnection = MM_conn_STRING
MM_rsUser.Source = "SELECT username, userpass"
If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsUser.Source & "," & MM_fldUserAuthorization
MM_rsUser.Source = MM_rsUser.Source & " FROM js WHERE username='" & Replace(MM_valUsername,"'","''") &"' AND userpass='" & Replace(Request.Form("userpass"),"'","''") & "'"
MM_rsUser.CursorType = 0
MM_rsUser.CursorLocation = 2
MM_rsUser.LockType = 3
MM_rsUser.Open
If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then
' username and password match - this is a valid user
Session("MM_Username") = MM_valUsername
If (MM_fldUserAuthorization <> "") Then
Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value)
Else
Session("MM_UserAuthorization") = ""
End If
if CStr(Request.QueryString("accessdenied")) <> "" And false Then
MM_redirectLoginSuccess = Request.QueryString("accessdenied")
End If
MM_rsUser.Close
Response.Redirect(MM_redirectLoginSuccess)
End If
MM_rsUser.Close
Response.Redirect(MM_redirectLoginFailed)
End If
%>
揭阳建设网
| 首页 >
揭阳市建设工程交易中心> 办理指南及服务指引 |
| |
|
办
理 指 南 及 服 务 指 引
1、招标人持立项等批文向交易中心索取交易登记表,填写完毕后在交易中心办理交易登记。
2、招标公告应在指定的信息发布媒介发布;招标公告发布时间至报名截止时间最低期限为五个工作日。
3、招标人或招标代理机构编制招标文件或资格预审文件,应向交易中心备案;招标文件或资格预审文件应包括评标方法、资格预审方法。
4、招标人或招标代理机构通过交易中心安排招标活动日程。
5、招标人或招标代理机构在交易中心发售招标文件或资格预审文件,潜在投标人按招标公告要求在交易中心获取招标文件或资格预审文件,交易中心提供见证服务。
6、进行资格预审的项目,由招标人或招标代理机构在交易中心向资格预审合格的特定投标人发出投标邀请书,交易中心提供见证服务并跟踪管理。
7、招标人或招标代理机构组织不特定的投标人或资格预审合格后的特定投标人踏勘现场,并在交易中心以召开投标预备会的方式解答,同时以书面方式通知所有投标人。但在上述活动中不得向他人透露已获取招标文件的潜在投标人的名称、数量以及可能影响公开竞争的有关招标投标的其他情况,交易中心提供见证服务并跟踪管理。
8、投标人按招标文件要求编制投标文件;需设标底的工程,标底由招标人自行编制或委托经建设行政主管部门批准,具有编制工程标底资格和能力的中介咨询服务机构代理编制。
9、投标人按招标文件的要求编制投标文件,并按招标文件约定的时间、地点递送投标文件,招标人或招标代理机构应予以签收,并出具表明签收人和签收时间的凭证,交易中心提供见证服务并跟踪管理。
10、招标人或授权的招标代理机构通过随机从交易中心提供的评标专家库中随机抽取评标专家,组成评标委员会,交易中心提供见证服务并跟踪管理。
11、由招标人或招标代理机构主持开标会议,按招标文件规定的提交投标文件截止时间的同一时间在交易中心公开开标,交易中心提供监督和见证服务。
12、评标委员会依据招标文件确定的评标方法评标,并产生评标报告,向招标人推荐中标候选人,交易中心提供见证服务并全过程进行现场监督。
13、招标人或招标代理机构在交易中心通过中标公示栏(揭阳建设信息网)公示中标候选人(三个工作日),交易中心提供见证服务。
14、招标人、中标人缴纳交易服务和交易场地费用。
15、招标人向中标人签发中标通知书。
16、中标单位收到中标通知书后,一个月内到交易中心与建设单位签订承包合同。
|
|
| |
|
关于网站 | 联系我们 |
使用帮助 | 网络服务 |
保密协议 | 版权声明 |
主办:揭阳市住房和城乡建设局
承办:揭阳市建瓴建设信息中心 协办:揭阳市建筑业协会 |
Copyright ©
2004 2005. 电话:0663-8268835 传真:0663-8268835 |