Set the value for lable use javascript
Set the value for lable use javascript
After compiled, the server control "lable" will compile to the HTML control "span", in javascript, to set it's value
using the follow code:
1document.getElementById('labe1').innerHTML = "information";
or
1document.getElementById('labe1').innerText = "information";