Hi,
i was placing value to hidden box in html using javascript.but,
value has been placed as empty(value="") for every form submission in my project.
my requirement is, hidden box value should not be empted until page closing.because,this hidden box value will be changing for every form submission dynamically.
Thanks
Ravi Gaddam
Loading
Javeed M ShaikhPosted Sep 6, 2013, 10:00 AM
in the javascript assign like this:
document.getElementById('hiddenFormFieldName').Value = 'hiddenvalue';
As Ravi said if you share your code it will be easier for us to look and answer.
Sunny SharmaPosted Sep 6, 2013, 6:15 AM
Please share your code.