我需要绑定数据表。我在服务器端看到了一些问题。这些条件无法返回null值。当我返回null值时,显示错误。
如何纠正这个?我的代码如下:
public ActionResult Action(string testId)
{
if (int.TryParse(mydata, out number)) // 1st condition
{
if (test != null) // 2nd condition
{
return new DataTableResult("MY data table binding");
}
else
{
// 2nd else part
}
}
else
{
// 1st else part
}
// here what i put?
}