Cassien
Programmer
- Sep 17, 2002
- 94
Update on my previous post...
Take a look at
I'm trying to allow users to populate the right hand box with a number of variables from the left one and then update their data with it.
dim item
for each item in request.Form("Selected"
StrSql = "UPDATE Table2 SET Table2.Data = " & item & " WHERE UName = 'Prac'"
Set MM_editCmd = OBJdbConn.Execute(StrSql)%>
next
That's what I tried to use, but it doesn't seem to think there's anything in the second box.
Any ideas?
Thanks, John
Take a look at
I'm trying to allow users to populate the right hand box with a number of variables from the left one and then update their data with it.
dim item
for each item in request.Form("Selected"
StrSql = "UPDATE Table2 SET Table2.Data = " & item & " WHERE UName = 'Prac'"
Set MM_editCmd = OBJdbConn.Execute(StrSql)%>
next
That's what I tried to use, but it doesn't seem to think there's anything in the second box.
Any ideas?
Thanks, John