Here is my sproc: Select ID, (col1 + ' ' + col2) As RateDate From Rate -------------------------------------------------- Here is my code: EmployerDataContext db = new EmployerDataContext (); var eeRates = db.sproc(); ddlAccrualRateRR.DataSource = eeRates; ddlAccrualRateRR.DataTextField = "RateDate" ; ddlAccrualRateRR.DataValueField = "ID" ; ddlAccrualRateRR.DataBind(); ------------------------------------------------ When I run the web app, I get the following error: DataBinding: 'sprocResult' does
Read More...