I've got several things that have broken in Mono 1.1.9 and 1.1.9.1 that were
working in Mono 1.1.8
One of them is the selected value in a drop down list.
private void GetStates()
{
CarlsWebs.WebModules.Contact.Business.Contact
locations = new CarlsWebs.WebModules.Contact.Business.Contact();
DropDownStates.DataSource = locations.GetStates();
DropDownStates.DataTextField = "description";
DropDownStates.DataValueField = "statecode";
DropDownStates.SelectedValue = "IA";
DropDownStates.DataBind();
}
When I run this in Microsoft ASP.NET 1.1, the list comes up with Iowa
selected. When I ran it in Mono 1.1.8, the list came up with Iowa selected.
When I run it in Mono 1.1.9 or 1.1.9.1, nothing is selected. Does anyone
know how to fix this?
Carl Olsen
http://www.carl-olsen.com/
_______________________________________________
Mono-list maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list