i 'm coding in 3 tier i did datalayer and business logic my problem is with presantation i try this code to cal my business logic and to popolate my text box but it gives me problem.it gives me this error Error 2 Cannot convert method group 'ToString' to non-delegate type 'string'.
here is my code:
string
HBLL=
row = ds.Tables[0].Rows[0];
{
txtName.Text = t1.Rows[0][
ddlCity.Text = t1.Rows[1][
ddlLocation.Text = t1.Rows[2][
txtAdd.Text = t1.Rows[3][
txtTelephone.Text = t1.Rows[4][
txtEmail.Text = t1.Rows[5][
}