Hi all I am having an integer value \[code\]null\[/code\] in my table, I would like to bind it to gridview label with \[code\]0\[/code\] when the value is \[code\]null\[/code\], for a \[code\]nullable\[/code\] string I write this which works fine but the same with changes didn't work can some one help\[code\]<asp:Label ID="lbl" runat="server" Text='<%#(String.IsNullOrEmpty(Eval("call").ToString()) ? "NULL" : Eval("call"))%>'></asp:Label>\[/code\]The same for Integer I write as follows\[code\]<%# string.IsNullOrEmpty(Eval("send2").ToString()) ? "0" : Convert.ToInt16(Eval("send2")).ToString() %>\[/code\]This didn't worked, any help appreciated