Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft VBScript runtime error '800a000d'

Status
Not open for further replies.

cagedmonkees

IS-IT--Management
Sep 24, 2003
11
0
0
US
Have a form on a website that works until the user hits submit. Then they get the following error:
Microsoft VBScript runtime error '800a000d'

Type mismatch: 'LBound'

/database/acc06.asp, line 81


This form was created from an Access 2003 database which I inherited with this job. I am not a programmer, so please be basic with the explanation on how I can fix this.

Thanks!
 
you are prob trying to find the LBound of something which isnt an array
 
lbound and ubound are the lower and upper boundaries of an array. Typically an array starts at element zero, so an array with data like this:

myArray(0)="something"
myArray(1)="something more"
myArray(2)="something else"

has a lbound of 0 and a ubound of 2. As you can see there are 3 elements when you add in the zeroth place.

I hope you find this post helpful.

Regards,

Mark
 
Here is the coding. I still am lost on this one. I have bolded the coding form line 81. Thanks in advance to everyone that has given posts so far.

Step 2<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<!--#include file="../Connections/acc.asp" -->
<%
' *** 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 = ""
%>
<%
' *** Insert Record: set variables

If (CStr(Request("MM_insert")) = "form2") Then

MM_editConnection = MM_acc_STRING
MM_editTable = "housing05"
MM_editRedirectUrl = "added.asp"
MM_fieldsStr = "date_submitted|value|member_type|value|member_id|value|last_name|value|
first_name|value|address_type|value|company|value|address|value|city|value
|state|value|zip|value|email|value|daytime_phone|value|fax|value|
arrival_date|value|departure_date|value|sharing_room_1|value|
sharing_room_2|value|sharing_room_3|value|sharing_room_4|value|room_type|
value|bed_type|value|smoking_preference|value|ada|value|payment_type|
value|cc_number|value|cc_exp|value|cc_name|value"
MM_columnsStr = "date_submitted|',none,NULL|member_type|',none,'|member_id|',none,'|
last_name|',none,'|first_name|',none,'|address_type|',none,'|company|
',none,'|address|',none,'|city|',none,'|state|',none,'|zip|',none,'|
email|',none,'|daytime_phone|',none,'|fax|',none,'|arrival_date|
',none,'|departure_date|',none,'|sharing_room_1|',none,'|sharing_room_2|
',none,'|sharing_room_3|',none,'|sharing_room_4|',none,'|room_type|
',none,'|bed_type|',none,'|smoking_preference|',none,'|ada|',none,'|
payment_type|',none,'|cc_number|',none,'|cc_exp|',none,'|cc_name|
',none,'"

' 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
%>
<%
Dim Recordset1
Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_acc_STRING
Recordset1.Source = "SELECT * FROM housing05"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()

Recordset1_numRows = 0
%>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top