bobbybrown69
Programmer
Does anyone know how I would do this?
'** When a user selects an option from the dropdown box an onChange event modifies the value of the hidden input box below.
sb.Append("<input type=hidden name=descriptionName_" + vid + " value=""" & ds.Tables(0).Rows(i).Item("description").ToString() & """></td>")
'** I need to change "description" below to be what the user has chosen i.e. The value from the hidden input box descriptionName_ + vid
‘** instead of ds.Tables(0).Rows(i).Item("description").ToString()
This didn't work. document.forms[0].elements['descriptionName_" + vid + "'].value
sb.Append("<input type=hidden name=linerAd_" + vid + " value=""" + linerAd + ds.Tables(0).Rows(i).Item("description").ToString() + " " + signatureText + """>")
'** When a user selects an option from the dropdown box an onChange event modifies the value of the hidden input box below.
sb.Append("<input type=hidden name=descriptionName_" + vid + " value=""" & ds.Tables(0).Rows(i).Item("description").ToString() & """></td>")
'** I need to change "description" below to be what the user has chosen i.e. The value from the hidden input box descriptionName_ + vid
‘** instead of ds.Tables(0).Rows(i).Item("description").ToString()
This didn't work. document.forms[0].elements['descriptionName_" + vid + "'].value
sb.Append("<input type=hidden name=linerAd_" + vid + " value=""" + linerAd + ds.Tables(0).Rows(i).Item("description").ToString() + " " + signatureText + """>")