In the table, DateTime field DataTestSSM is not null. When I try to get data from reader and handle the null value is not working. I tried with
txtDataTest.Text = rdr["DataTestSSM"] == DBNull.Value ? "-" : ((DateTime)(rdr["DataTestSSM"]).ToString("dd-MM-yyyy"));
What am I doing wrong?

Jithu ThomasPosted Jun 22, 2024, 8:51 AM
You can correct the same with the following code