[Mono-list] Several things broken in Mono 1.1.9.1

Carl Olsen carl at carl-olsen.com
Sat Sep 24 08:00:47 EDT 2005


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/




More information about the Mono-list mailing list