EnableEventValidation problem

  • Thread starter Thread starter Dallas Nestor
  • Start date Start date
D

Dallas Nestor

I have several dropdownlists controls on my page that are modified in
javascript. I also have one textbox control that is modified by javascript
based upon the results of the dropdownlists. When I shut off Event
Validation for the page, I do not get the error message but the textbox does
not return any data. The textbox on the screen displays the value 'C' but it
is returned as "".
 
your textbox is probably disabled. the browser will not post back any
disabled fields. have the javascript copy the values to a hidden field.

-- bruce (sqlwork.com)
 
Thank you for your response. I have looked at the code and do not see the
textbox being disabled. I just converted this system from VS2003 to VS2008
and .net framework v1.1 to v3.5. The old version on VS2003 and framework
v1.1 work just fine. The converted version does not. I am curious as to the
difference as it pertains to this problem.
 
Back
Top