I have a hidden field and I can change it all day long in Javascript. I want to retreive it on the server side. I can't get it to work.. It comes back with all blanks.
Ideas?
<script type="text/javascript">
function abc() {
var str = "Captain Ron";
document.getElementById("MainContentPlaceHolder_Hidden1").value = str;
return true;
}
<input id="Hidden1" name="Hidden1" type="hidden" runat="server" />
server side
test = Hidden1.Value
Go to the complete details ...