“Ambiguous match found” in a Web Control - a Possible Bug
If you use ASP.NET AJAX you might come up with this error popup - “Ambiguous match found”.
The issue here is that you have 2 variables that are named the same but have different casing. You have to rename the variables to have different names. Changing from protected to private will not help.
More info can be found at Eran Sandler’s blog - “Ambiguous match found” in a Web Control - a Possible Bug.
Eran Sandler’s blog - Subscribed!
1 Comment so far
Leave a reply
Thanks for this. I was trying to send a JSON serialized object back through an Ajax webservice, and this help me with a direction greatly.