我正在从数据库表中检索数据。
通过将输入作为 1 in
textbox1(voucherno)-->damagedetail =
web.getdamageddetail(Convert.ToInt32(voucherno.Text));
我想在 textbox2(branchno) 中获取 branchno 作为输出
branchno.Text = damagedetail.branchno.ToString();
但我收到错误
对象引用未设置到对象的实例中。
检查我的第二行。
第二行编码是否正确?