"DataMember property 'produtoid' cannot be found on the DataSource."
try
{
SqlDataAdapter da = new SqlDataAdapter();
DataSet ds = new DataSet();
da = P.SelectEProdutosID(cod); // call the ADO.NET function in the SQL Class, return to me "SELECT * FROM produtos WHERE produtdoid = @produtoid", that is OK here;
if (da != null)
&n ...
Go to the complete details ...