I want to add the value from my database to a label
the value has a datatype varbinary(max)
string buF = dt.Rows[i]["BuF"].ToString();
Label3.Text = buF;
for this i get the output as System.Byte[] which is not the correct value..
any suggestions??
thanks