Невозможно неявно преобразовать тип 'object' в 'string'. Существует явное преобразование (вы пропускаете приведение?)
всем привет,
я получил данную ошибку, пожалуйста, сделайте одолжение для меня...
Невозможно неявно преобразовать тип 'object' в 'string'. Существует явное преобразование (вы пропускаете приведение?)
Ошибка Источника:
Строка 256: строка verifydest_result = null;
Строка 257: verifydest_result = "";
Строка 258: verifydest_result = verifyAllocDest(TextBoxDest.Text.Trim());
Строка 259: if(verifydest_result=="1")
Строка 260: {
мой код таков :
string verifydest_result = null; verifydest_result = ""; verifydest_result = verifyAllocDest(TextBoxDest.Text.Trim()).ToString(); if(verifydest_result=="1") { int verifycount_result=0 public object verifyAllocDest(string destination) { string result = null; try { SqlConnection con = new SqlConnection(sqlconn_cmsstr); if (con.State == ConnectionState.Closed) { con.Open(); } SqlCommand cmd = new SqlCommand("bms_destinationvalidate", con); cmd.CommandType = CommandType.StoredProcedure; cmd.Parameters.AddWithValue("@Accountnumber", Session["User_id"]); cmd.Parameters.AddWithValue("@DestNo", destination); SqlDataReader dr = cmd.ExecuteReader(); if (dr.HasRows) { result = "0"; return result; } else { result = "1"; return result; } } catch (Exception ex) { result = "-1"; return result; } };