hello,
I was wondering if I can serialize a dynamic field, for example fi the name of the field is myfield, when I execute my asp code and the page displays the "myfield" field would show up as
myfield1
myfield2
myfield3... and so on?
I tried
but no luck, it just put a 1 instead of myfield1
I was wondering if I can serialize a dynamic field, for example fi the name of the field is myfield, when I execute my asp code and the page displays the "myfield" field would show up as
myfield1
myfield2
myfield3... and so on?
I tried
Code:
<select name="<%
myvalue = myfield
response.write myvalue + 1
%>">
but no luck, it just put a 1 instead of myfield1