"") Then
MM_editConnection = MM_@@cname@@_STRING
MM_editTable = "@@table@@"
MM_editColumn = "@@col@@"
MM_recordId = "@@colQuote@@" + Request.Form("MM_recordId") + "@@colQuote@@"
MM_editRedirectUrl = "@@redirect__url@@"
MM_fieldsStr = "@@fieldsStr@@"
MM_columnsStr = "@@columnsStr@@"
' 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
%>
]]>