Greeting TEKers, i can't seem to get this working correctly. I have a dynamic text box called info and i'm using server side values and am tring to write them to the text box. The varibles are being written to the text box but so is the html code... like so: <b>persian</b><br><font color="#00ffff">poodle</font><br><br>
this is the actions for the frame:
cat_array = output.split(","
;
dog_array = eoutput.split(","
;
cat_length = cat_array.length;
dog_length = dog_array.length;
for (i=0; i<cat_length; i++) {
info.htmlText += this["cat"+i].info = '<b>' + cat_array + '</b><br><font color="#00ffff">' + dog_array + '</font><br><br>';
}
Please help me solve this, can't figure it out, I'm sure its simple.
this is the actions for the frame:
cat_array = output.split(","
dog_array = eoutput.split(","
cat_length = cat_array.length;
dog_length = dog_array.length;
for (i=0; i<cat_length; i++) {
info.htmlText += this["cat"+i].info = '<b>' + cat_array + '</b><br><font color="#00ffff">' + dog_array + '</font><br><br>';
}
Please help me solve this, can't figure it out, I'm sure its simple.