Hi,
I have another problem in changing the value of a hidden field. The following line does not work:
document.getElementByID(rowChangedID.id).value = total;
where rowChangedID is a string value containing the server control identifier that was generated by ASP.NET. It references a hidden field.
I have another similar line that works without a problem:
document.getElementById(totalID.id).innerHTML = total;
Here the element is a span tag.
Any ideas?
I have another problem in changing the value of a hidden field. The following line does not work:
document.getElementByID(rowChangedID.id).value = total;
where rowChangedID is a string value containing the server control identifier that was generated by ASP.NET. It references a hidden field.
I have another similar line that works without a problem:
document.getElementById(totalID.id).innerHTML = total;
Here the element is a span tag.
Any ideas?