2
Reply

How I check If reader has Null value ?

Chevy Mark Sunderland

Chevy Mark Sunderland

Mar 26 2012 11:02 AM
1.3k
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();

Answers (2)