Request.Form

  • Thread starter Thread starter barry
  • Start date Start date
B

barry

This is for dot net 1.1 vb.net

I am trying to use Request.Form("Fig4a") in the code behind to show a hidden
field

I have defined the hidden field in HTML as <input type="hidden" id="Fig4a">

I am setting the hidden field in javascript with the following

document.getElementById("Fig4a").value = "True"

I see by using an alert that it is being populated in the javascript

The problem is I am getting nothing when I do a
response.write(request.form("Fig4a")) in the code behind

Thanks
 
Back
Top