In DW MX 2004 (C#), when I set the "select value equal to" for a dropdownlist
item, I get the following .NET error once I try to view the webpage:

CS0121: The call is ambiguous between the following methods or properties:
'DreamweaverCtrls.DataSet.FieldValue(string,
System.Web.UI.WebControls.DataListItem)' and
'DreamweaverCtrls.DataSet.FieldValue(string,
System.Web.UI.WebControls.DataGridItem)'

Below is the code that throws the error:

Has anyone ever seen this before? This happens on all the machines in my
office (WinXP SP2 and Win2k). Is there a new DreamweaverCtls.dll file I should
use, or a patch of some sort? Or am I doing something wrong?

If I remove the first line of the code quoted below, the page runs fine but
the dropdownlist does not have a selected item.

Any help would be great. Thanks.




<% FIN_ACC_ID.SelectedIndex =
FIN_ACC_ID.Items.IndexOf(FIN_ACC_ID.Items.FindByVa lue(SIGA_PER.FieldValue("FIN_A
CC_ID", null) )); %>
<asp:DropDownList DataSource="<%# FIN_ACC.DefaultView %>"
DataTextField="FIN_ACC_Name" DataValueField="FIN_ACC_ID" ID="FIN_ACC_ID"
runat="server" class="fonts_arial_07"></asp:DropDownList>