Suppose I have asp Lable set in markup like:
<asp:Label ID="myID" runat="server"></asp:Label>
then set value for this Label in code behind like:
myID.Text =100
then I want get the value 100 in javascript. I tried:
document.getElementById('<%=myID.ClientID%>').value;
but is not working. How to resolve this issue?
I believe that labels render as spans. Try getting the inner text.
document.getElementById('<%=myID.ClientID%>').innerText;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With