K
K Viltersten
I've used the following
<input type="hidden" ID="Carrier" runat="server" value="abc" />
Then, in JS i set the value to "oink". I've checked using a debugger that
the value actually resides in that component. As the page gets requested
back from the server, i also issue the following.
Button1.Text = Carrier.Value + "#";
I'd expect to see "oink#" but instead i see "abc#". Why, oh why... I've
tested without explicit assignment of value but that only leads to "#" as
a result.
<input type="hidden" ID="Carrier" runat="server" />
What can i be doing wrong? What more can i check?
<input type="hidden" ID="Carrier" runat="server" value="abc" />
Then, in JS i set the value to "oink". I've checked using a debugger that
the value actually resides in that component. As the page gets requested
back from the server, i also issue the following.
Button1.Text = Carrier.Value + "#";
I'd expect to see "oink#" but instead i see "abc#". Why, oh why... I've
tested without explicit assignment of value but that only leads to "#" as
a result.
<input type="hidden" ID="Carrier" runat="server" />
What can i be doing wrong? What more can i check?