Hello and thanks for reading this.
Im trying to add a placeholder(text) to a textbox if the value in the column is NULL. How can i do this.
if (!DBNull.Value.Equals(GetSurvey.BBCMailReceiver))
{
//PLACEHOLDER HERE
}
else
{
txtBBCMailReceiver.Text = GetSurvey.BBCMailReceiver.ToString();
}
Thanks for your help and time
Go to the complete details ...