| |
imav8n
Posts: 95
Score: 0
Joined: 7/3/2001
From: USA
Status: offline
|
I broke this up into quite a few lines, so you could see what I was doing...you can always consolidate them back, but this makes your code easier to read: <% For v=1 to StrNumOfStyleValue strTemp = "<INPUT TYPE=" strTemp = strTemp & FieldType strTemp = strTemp & " NAME=STYLENUM" & v strTemp = strTemp & " ID=STYLENUM" & v strTemp = strTemp & " VALUE=STYLENUM" & v strTemp = strTemp & ">" strOutput = strOutput & strTemp next strOutput = strOutput & "</table>" Response.Write (strOutput) ~imav8n
|
|