How I check If reader has Null value ?
Hi all, I hope your appreciated help.
I need check value of reader, and try this code, I don't have error in the asp net page but when the `reader[0].ToString();` is not null I have the incorrect output: Output --
Thanks in advance.
string top = "--";
if (!top.Equals(System.DBNull.Value))
{
top = "--";
}
else
{
top = reader[0].ToString();
}
reader.Close();
reader.Dispose();
Loading
VulpesPosted Mar 26, 2012, 11:08 AM
Chevy Mark SunderlandPosted Mar 26, 2012, 2:32 PM
I'm really happy for your quickly answer.
Good bye