S
simon
if I have on page:
<asp:label id="Label1"></asp:label>
and I can't get its value on client script:
<script language="vbscript">
sub test()
msgbox form1.label1.text
end sub
</script>
If I use instead of this <input type=...>
I can read it's value in client script but I can't access it on code behind
page.
I have to set the start value on the page_onload event and than change it by
client script.
How to do that?
Thank you,
Simon
<asp:label id="Label1"></asp:label>
and I can't get its value on client script:
<script language="vbscript">
sub test()
msgbox form1.label1.text
end sub
</script>
If I use instead of this <input type=...>
I can read it's value in client script but I can't access it on code behind
page.
I have to set the start value on the page_onload event and than change it by
client script.
How to do that?
Thank you,
Simon