Posted - 09/22/2018 : 17:16:24
I think it's just a matter of writing out the html code, except you need to remember to use double quote with it being .asp code https://www.w3schools.com/html/html_form_input_types.asp
so this askquestionparam1="Extra Param1" askquestionrequired1=TRUE askquestionhtml1="<select name=""ectfield"" id=""ectfield"" size=""1""><option value="""">Please Select...</option><option value=""Test 1"">Test 1</option><option value=""Test 2"">Test 2</option></select>"
should be more like this
askquestionparam1="Extra Param1" askquestionrequired1=TRUE askquestionhtml1="Phone Number:<br/><input type=""text"" name=""phone"" id=""phone"">"
|