I\'m using Accordian control of ajax toolkit.
I\'m getting the following error:
Microsoft JScript runtime error: Sys.ArgumentException: Value must
We just had this problem as a result of not explicitly setting an ID on an AJAX control. You might want to check that you're setting the ID property.
I hope this saves some people some time.
The issue for me was a control (required field validator) w/ the property set:
EnableClientScript="false"
I just ran into this problem as a result of having commented out a block of old HTML (<!-- ... -->
) which contained textboxes and maskededitextenders.
When I removed that HTML the error stopped occurring.
There could be a whole host of problems associated with this error. Not much to go on, but here are some possibilities
Hope this helps!
I was building my ID dynamically based on an effective date. So the ID I was trying to assign was like "tp03/14/2015". This was bad.
Make sure the ID you're assigning doesn't have slashes in it.