Reputation: 596
How do you get values from a POST request in ColdFusion?
Figured the hard way that POST.id doesn't work like URL.id.
POST.id
URL.id
Upvotes: 19
Views: 23825
Reputation: 7885
You want FORM, not POST. eg form.id or form['id']
form.id
form['id']
Upvotes: 12
Reputation: 28873
Post values are passed in the FORM scope ie FORM.id
FORM.id
Upvotes: 35