I've tried both of these:

    <asp:HiddenField ID = "selectedHour" runat="server" Value="blahblah" />
    <input type="hidden" id="myHour" name="hour" Value="blahblah" runat="server"/>

And I try to update it with Javascript:

     <script type="text/javascript">
      function addEventByClick(hour) {
        document.getElementById("myHour").Value = hour;
        alert(document.getElementById("myHour").Value);
        document.getElementById("dummyButton").click();
      }
     </script>

which "works": the alert gives me the correct number.

Then, when I click submit it calls a C# method (called by clicking an asp.net component), which does this:

String h = myHour.Value;
//or
//String h = Request.Form["myHour"];

and this always returns "blahblah", that is, the initial value.

All of this stuff is in an update panel, but it's in the SAME update panel, all within the same ContentTemplate.

So why isn't it updating?

Edit: Thanks guys. I hate when I get 3 perfect answers, how do I know which one to check...

link|improve this question

78% accept rate
What does this do? -> document.getElementById("dummyButton").click() – Rohan Jun 9 '11 at 18:35
@Rohan It simulates clicking a button, and works perfectly. I'm using it to open a modal pop-up since there's multiple ways of the user getting that pop-up. – Jeremy Jun 9 '11 at 18:39
not sure though because .click() should technically work on a jquery object not on a DOM object as you have selected. – Rohan Jun 9 '11 at 18:41
feedback

3 Answers

up vote 2 down vote accepted

Try using value instead of Value. Browsers are picky about these things.

Alternatively, use jQuery, and your problems magically disappear:

$('#myobject').val( 'new value' );

link|improve this answer
I... I can't believe that worked. I was seriously working on this for 30 minutes. – Jeremy Jun 9 '11 at 18:32
@Jeremy, it worked because javascript is case-sensitive. – Xaisoft Jun 9 '11 at 18:34
@Xaisoft: Even HTML is, too, occasionally, depending on your browser. Using jQuery eliminates the headache of things "magically not working". You can't mis-use the .val method. Every misspelling throws an explicit error, as opposed to silently failing. – Stefan Kendall Jun 9 '11 at 18:39
People have been suggesting jquery forever. I'm not really feeling comfortable with asp.net yet, but I guess it's time to take the plunge. – Jeremy Jun 9 '11 at 18:41
@Jeremy, asp.net and jquery are two completely different things. Stefan is talking about the encapsulation jquery gives you over raw javascript. – Xaisoft Jun 9 '11 at 19:20
show 2 more comments
feedback

try with uncapitalized Value, for the raw html:

document.getElementById("myHour").value = hour
link|improve this answer
feedback

javascript is not case-sensitive. try:

replace document.getElementById("myHour").Value = hour; by 
        document.getElementById("myHour").value = hour; and 

document.getElementById("myHour").Value by 
document.getElementById("myHour").value
link|improve this answer
1  
you mean that javascript IS case-sensitive. =D – Scott Jun 9 '11 at 18:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.