I have a JavaScript function called Func() within my user control that updates the value of a hidden field. I am looking to also assign this hidden field value to a code-behind property in the same JavaScript function so that it can be accessed in the parent ASPX.VB page without requiring a postback.
<script type="text/javascript" >
function func(id) {
HFTargetSign = id;
alert(HFTargetSign);
}
</script>
Does anyone have suggestions on how to successfully implement this?