Have you tried naming your data table when you create it and setting that name to the DataMember Property? Try this and see if it works: for your declaration: DataTable oData = new DataTable("TblStates");
during your binding setup, in this order: lstState.DataSource = oData; lstState.DataMember = "TblStates"; lstState.DataValueField = "StateAbbrev"; lstState.DataTextField = "StateName"; lstState.DataBind();
'Cause I'm living on things that excite me, be it pastries or lobsters or love...
I'm just trying to get by, being quiet and shy, in a world full of push and shove... Jimmy Buffett - The Wino and I know