Title: Form not posting all values [Closed by user] Post by: Gazzeh on July 09, 2013, 04:18:21 AM Hi,
I have a number of combo boxes and number boxes on my form. When i submit the form some values are not passed. <input id="lstFraFin" class="easyui-combobox" data-options=" valueField: 'id', textField: 'text', url: 'json/combobox_items.asp?comboname=colours_<%=strTemp%>&selectedid=<%=FrameFinish%>'" /> and <input class="easyui-numberbox" id="txtHorns" value="<%=CillHorns%>" data-options="min:0,max:350,precision:0"></input> are not passed. Your help is appreciated Thanks in advance Title: Re: Form not posting all values Post by: Gazzeh on July 09, 2013, 06:33:08 AM Ive looped round each form item and only 29 of 31 are there
for each x in Request.Form response.write(x & " - " & Request.Form(x) & "<BR>") next Anyone know why just 2 would not get passed? Title: Re: Form not posting all values Post by: stworthy on July 09, 2013, 12:38:30 PM Please add name attribute for every input elements.
Code: <input name="thename" ...> |