如何在jquery数据表中传递空值c#

时间:2013-03-04 06:06:22

标签: asp.net-mvc jquery datatables

我需要绑定数据表。我在服务器端看到了一些问题。这些条件无法返回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?
              }

0 个答案:

没有答案