Any Way to Use &x in middle of a string?

dehel

New Member
Using asp.net, would there be any way to substitute a variable for the the <BR>1(one) in ctrl1 below. I need the &x as it is at the end, but if I how <BR>could I also use &x or something to replace the 1(one) occuring in the <BR>middle of this string? <BR><BR>response.write (request.form("myRepeater:ctrl1:ctrl"&x)) <BR><BR>I've tried some things like this:<BR><BR>response.write (request.form("myRepeater:ctrl"&x"&":ctrl"&x))<BR>which doesn't properly continue for some reason . . .&nbsp;<BR>response.write (request.form("myRepeater:ctrl" & trim(str(x)) & ":ctrl" & trim(str(x)) )) <BR>
 
Back
Top