| Author: Rajiv Sharma 16 Aug 2007 | Member Level: Gold | Rating: Points: 2 |
if u r confused just create another function to get email ids from table and use it on form and for sending mail use smtpmail class
|
| Author: Balasubramaniyam 16 Aug 2007 | Member Level: Gold | Rating: Points: 2 |
if it is Datagrid string emailid=string.empty; foreach (DataGridItem item in griddatarelate.Items) { Label label1 = (Label)item.FindControl("emailid"); emailid=label1.text ///Here u have to do send...../////// }
|