在表格中,我有一个包含4个标签的标签控件的组Box。
在第二个标签中,我有一些文本框,在保存数据之前,我需要验证在这些textbx中输入的输入。请注意我的保存按钮位于最后一个标签中。
以下测试方案有效:
但是,在以下测试场景中,抛出了“未设置为对象实例的对象引用”异常:
我已经设置了断点,它显示特定的文本框为空。它发生在我破坏订单的每个文本框中。
请指导我不正确的地方以及如何解决。
以下是我在按下按钮时运行的代码。
private void btnOrderSave_Click(object sender, EventArgs e)
{
SaveOrder();
}
private void SaveOrder()
{
try
{
decimal? _marketRate, _bankcharges, _portcharges, _handlingcharges, _othercharges, _taxratio, _profitratio;
if (!String.IsNullOrEmpty(txtUnitPrice.Text))
{
if (valCtr.IsDecimal(txtUnitPrice.Text))
{
_marketRate = Convert.ToDecimal(txtUnitPrice.Text);
}
else
{
ErrorMessage("Rate is invalid");
return;
}
}
else
{
txtUnitPrice = null;
}
if (!String.IsNullOrEmpty(txtProfitRatio.Text))
{
if (valCtr.IsDecimal(txtProfitRatio.Text))
{
_marketRate = Convert.ToDecimal(txtProfitRatio.Text);
}
else
{
ErrorMessage("Profit ratio is invalid");
return;
}
}
else
{
txtProfitRatio = null;
}
}
catch (Exception ex)
{
AlertMessage(ex.InnerException + " :" + ex.Message + " : " + ex.StackTrace + " : " + ex.Source);
}
}
答案 0 :(得分:3)
您确定要将文本框本身设置为空而不是.Text
或其他成员吗?
txtUnitPrice = null;
称之为预感,但这些会更好吗?
txtUnitPrice.Text = null;
....
txtProfitRatio.Text = null;
答案 1 :(得分:2)
出现此问题的原因是您将文本框设置为NULL值。
else
{
txtUnitPrice = null;
}
您应该将Text属性设置为String.Empty,如下所示:
else
{
txtUnitPrice.Text = String.Empty;
}