You can use the Field method of the Datarow combined with an If Operator to check for a Null value in one line like this. If it is null, you can replace it with an empty string (or another string of your choosing):
hfSupEmail.Value = If(dt.Rows(0).Field(Of String)("SupEmail"), "")