I have a label and change it's value with javascript like this:
document.getElementById("lb").InnerHTML = "10";
document.getElementById("lb").InnerText = "10";
In the page, the label value is changed but in code behind when i want use lb. text
it shows the old value, not 10.
How can change the value with javascript (not JQuery)(not hidden field) and see the new value in the code behind?