I have a similar validation error in which the the input data were "corrupt" -- a couple of the database entries had newlines (carriage returns, whatever) at the end, and the option tags showed up like this:
<option value="some value here
">Some Text Here</option>
rather than
<option value="some value here">Some Text Here</option>
as you'd expect. Worse, it was only a couple of entries, so it seemed random to the user. Check your page source. I ended up just re-entering the values in the database, making sure I nulled them out first (which you can do with Ctrl-Zero in SQL Server Enterprise
Manager (2000) or Management Studio (2005)).
JBL
Member
5 Points
1 Post
Re: error: enableEventValidation="true"/
Jun 29, 2006 02:48 PM|LINK
<option value="some value here
">Some Text Here</option>
rather than
<option value="some value here">Some Text Here</option>
as you'd expect. Worse, it was only a couple of entries, so it seemed random to the user. Check your page source. I ended up just re-entering the values in the database, making sure I nulled them out first (which you can do with Ctrl-Zero in SQL Server Enterprise Manager (2000) or Management Studio (2005)).
Hope this helps.
JBL