Hello all,
I recieve this error with the two Input statements (below):
Error Message:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding
to the requested name or ordinal.
/project/wo_project_form.asp, line 355.
Here is my code: (Line 355 is the first <Input type> statement). The "project_status" select option statement appears fine if I remove the Input statements.
<%
MySQL = "Insert into wo_table (wo_number, project_name, project_start_date, project_end_date) Values('"&wo_number&"','"&project_name&"','"&project_start_date&"','"&developer_end_date&"');"
%>
<Table>
<tr>
<td class="small" colspan="2"><li class="bullettext"><strong> PROJECT INFORMATION</strong></td>
</tr>
<tr>
<td class="small" width="20"> </td>
<td width="701" class="small"></td>
</tr>
<tr>
<td class="small" width="20"> </td>
<td class="small">Project Name:</td>
<INPUT TYPE="text" NAME="project_name" VALUE="<%=RS("project_name"%>" SIZE=20 tabindex="1"></td>
<INPUT TYPE="text" NAME="project_start_date" VALUE="<%=RS("project_start_date"%>" SIZE=20 tabindex="2"></td>
<INPUT TYPE="text" NAME="project_end_date" VALUE="<%=RS("project_end_date"%>" SIZE=20 tabindex="3"></td>
<td>Project Status:
<select name="project_status" tabindex="4">
<option><strong><%=RS("project_status"%></strong></option>
<option value="Open">Open</option>
<option value="Closed">Closed</option>
<option value="Pending">Pending</option>
</select>
</td>
</tr>
</Table>
Appreciate your time.
I recieve this error with the two Input statements (below):
Error Message:
ADODB.Recordset (0x800A0CC1)
Item cannot be found in the collection corresponding
to the requested name or ordinal.
/project/wo_project_form.asp, line 355.
Here is my code: (Line 355 is the first <Input type> statement). The "project_status" select option statement appears fine if I remove the Input statements.
<%
MySQL = "Insert into wo_table (wo_number, project_name, project_start_date, project_end_date) Values('"&wo_number&"','"&project_name&"','"&project_start_date&"','"&developer_end_date&"');"
%>
<Table>
<tr>
<td class="small" colspan="2"><li class="bullettext"><strong> PROJECT INFORMATION</strong></td>
</tr>
<tr>
<td class="small" width="20"> </td>
<td width="701" class="small"></td>
</tr>
<tr>
<td class="small" width="20"> </td>
<td class="small">Project Name:</td>
<INPUT TYPE="text" NAME="project_name" VALUE="<%=RS("project_name"%>" SIZE=20 tabindex="1"></td>
<INPUT TYPE="text" NAME="project_start_date" VALUE="<%=RS("project_start_date"%>" SIZE=20 tabindex="2"></td>
<INPUT TYPE="text" NAME="project_end_date" VALUE="<%=RS("project_end_date"%>" SIZE=20 tabindex="3"></td>
<td>Project Status:
<select name="project_status" tabindex="4">
<option><strong><%=RS("project_status"%></strong></option>
<option value="Open">Open</option>
<option value="Closed">Closed</option>
<option value="Pending">Pending</option>
</select>
</td>
</tr>
</Table>
Appreciate your time.