I have a hidden field. Where I need to set a Boolean value intitially. After some operation I need to update the hidden filed value using JavaScript. But we can only store string value in hidden field. How to set/get Boolean value in hidden field?
Any Idea how to implement it?
As you correctly noticed - you can only store String in HiddenField Value. To determine boolean value in Code Behind - you should Convert String Value to Bool.
For example:
bool val = Convert.ToBoolean(HiddenField1.Value);
To set Hidden Field value:
HiddenField1.Value = val.ToString();
in JavaScript - you can accomplish this by using:
var hiddenFieldValueString = document.getElementById("HiddenField1").value;
var val = (hiddenFieldValueString === "true");
setting new Hidden Field Value:
document.getElementById("HiddenField1").value = val;
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