How to get POST data in ColdFusion
How do you get values from a POST request in ColdFusion?
Figured the ha开发者_Python百科rd way that POST.id
doesn't work like URL.id
.
Post values are passed in the FORM scope ie FORM.id
You want FORM, not POST. eg form.id
or form['id']
精彩评论