Looks like the old databinding problems could be back in beta 1021...
Used to work:
StateCollection states = new StateCollection();
states.LoadAll();
StateDdl.DataSource = states;
StateDdl.DataTextField = "Code";
StateDdl.DataValueField = "Code";
StateDdl.DataBind();
But now:
HttpException (0x80004005): DataBinding: 'System.Char' does not contain a property with the name 'Code'.]
System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName) +197
System.Web.UI.DataBinder.GetPropertyValue(Object container, String propName, String format) +11
System.Web.UI.WebControls.ListControl.PerformDataBinding(IEnumerable dataSource) +333
System.Web.UI.WebControls.ListControl.OnDataBinding(EventArgs e) +104
System.Web.UI.WebControls.ListControl.PerformSelect() +31
System.Web.UI.WebControls.BaseDataBoundControl.DataBind() +70
MyProject.Web.Controls.AddressForm.Page_Init(Object sender, EventArgs e)
And in a bunch of DropDownLlist and GridView bindings:
The IListSource does not contain a data source named ''. Check your
DataMember value.
I'll post some more info if necessary but I'm assuming for now this is a re-occurrence of old issues...