G
Guest
SqlDataReader reader = command.ExecuteReader()
reader.Read()
Name.Value =(string)reader.GetString(1)
if this value is null it crashes, is there a way to determine if the value is null , or can the exception be handled or ignored??
reader.Read()
Name.Value =(string)reader.GetString(1)
if this value is null it crashes, is there a way to determine if the value is null , or can the exception be handled or ignored??