| |
petcucumber
Posts: 1
Score: 0
Joined: 8/23/2005
Status: offline
|
Hello im new I have a problem where i want to update some values in an Acess database, when traversing from one page to another i want only the values displayed from the specific table i wish to update to be shown. eg: if i wanted to update a process, when i click on the hyperlink of that process i want only that process displayed for update. In short it carries over only the values i wish to update from the previous ASP. here is some code:: While ((Repeat1__numRows <> 0) AND (NOT Start.EOF)) %> <tr> <td><div align="center"><a href="<%=("Update.asp")%>" target="_blank"><%=(Start.Fields.Item("Doc_ID").Value)%></div> </td> <td><div align="center"><%=(Start.Fields.Item("Description").Value)%></div> </td> <td><div align="center"><%=(Start.Fields.Item("LastSaved").Value)%></div> </td> <td><div align="center"><%=(Start.Fields.Item("SavedBy").Value)%></div> </td> <td><div align="center"><a href="<%=(Start.Fields.Item("Link").Value)%>" target="_blank"><%=(Start.Fields.Item("Link").Value)%></a></div></td> </tr> where it links to update.asp above i want only the DOC_ID i clicked on to be updated and all the values of that Doc_ID to be carried over to the next page and waiting for the user in the update.asp form.
|
|