Motaro
Posts: 8
|
| Posted: 02/01/2007, 5:50 AM |
|
This is the situation, I have a Editable Grid accessing a view in my database, I'm adding a checkbox control that will appear in every row printed by the editable grid, what i want to do is that when the submit button gets clicked the Id like to retrieve some values that exist in the grid but only those in the records where the checkbox was checked. I've tried the following code no luck :
for each x in request.form
if left(lcase(x), 8) = "control_name" then
response.write request.form(x) & "<br>"
end if
next
So what I'm assuming at the moment is that the values never get to the server or i don't really know what is happening. Please I need assistance on the matter.
_________________
"Democracy is the name we give others when we need something from them" |
 |
 |
jerry
Posts: 16
|
| Posted: 02/06/2007, 4:23 PM |
|
motaro
i'm no expert with CCS but this article may help you.
http://forums.codecharge.com/posts.php?post_id=60507
regards
|
 |
 |
|