Why DataTable not showing the NULL values?
- by thevan
I have one DataTable Which I gets from the BackEnd. But When I fix the BreakPoint and Visualize the DataTable, It does not show the NULL values. Why is it so?
In the BackEnd, My Table looks like below:
CustID JobID Qty
---------- -------- ------
1 NULL 100
2 1 200
But in the FrontEnd, My DataTable looks like below:
CustID JobID Qty
---------- -------- ------
1 100
2 1 200
Why it is not showing the NULL Values? Is there any specific reason? How to show the DataTable as it is like in the BackEnd?