I am receiving the error message on my update form: "Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. "
I can tell the parameter is getting passed because in the address bar it shows it getting passed: "http://###.###.#.#/AAAA/Update_Parts.asp?AutoNum=144"
I double checked the form passing the parameter, here is the link to passing the parameter:
I believe it has something to do with my Select Statement for Update_Parts.asp, here it is:
Any help would be appreciated here.
ASP VB w/ Microsoft Access Database
I can tell the parameter is getting passed because in the address bar it shows it getting passed: "http://###.###.#.#/AAAA/Update_Parts.asp?AutoNum=144"
I double checked the form passing the parameter, here is the link to passing the parameter:
Code:
<A HREF="Update_Parts.asp?<%= Server.HTMLEncode(MM_keepURL) & MM_joinChar(MM_keepURL) & "AutoNum=" & Parts.Fields.Item("AutoNum").Value %>">M</A> I believe it has something to do with my Select Statement for Update_Parts.asp, here it is:
Code:
SELECT Parts.*, Departments.*, Subtitles.*
FROM (Departments INNER JOIN Parts ON Departments.ID = Parts.Department) INNER JOIN Subtitles ON (Subtitles.StID = Parts.Sbtitle) AND (Departments.ID = Subtitles.Departs)
WHERE AutoNum = MMColParam
Any help would be appreciated here.
ASP VB w/ Microsoft Access Database
