I know how to do this, but am wondering about best practices...
I go get a row of data from a table. Some of these fields can be NULL. I am currently using an if statement for each field and if it is NOT NULL, populate text boxes or labels as appropriate.
This seems cumbersome to me, but I couldn't think of a better method to check for nulls and act accordingly.
Does this make sense? Is there a better way?