User-960441985 posted
Hi,
HOw I can move/transfer dataset table information to email body directly. It has multiple columns. The data is working fine once I bind with gridview.
DataSet ds = new DataSet();
da.Fill(ds, "gvdata");
gv1.DataSource = ds.Tables["gvdata"];
gv1.DataBind();
in email it prints only a string
msg.Body = "abc Program<br><br>"
+ ds.Tables["gvdata"] +"<br><br>";
please help ASAP