If i have an ASP script is it posible to use JavaScript inside the script to update a value in a text box?
E.g. The ASP code is doing a loop and i want to update a textbox
counter. Simmilar to how borg has done it with the mailing list. I need
it on the same page as the one i submit it from. I think causes issues
as i have copied the way borg did it and it does not work.
When i do it all i get is
<script langauge="JavaScript">document.frmSent.count.value = 1;</script>
<script langauge="JavaScript">document.frmSent.count.value = 2;</script>
<script langauge="JavaScript">document.frmSent.count.value = 3;</script>
<script langauge="JavaScript">document.frmSent.count.value = 4;</script>