Im using a gridview to display just the names of the customers in my database.
When i click on a name, I get all of that persons information (address, email, mortgage, ect) displayed nicely in a detailsview control on the right side of my page. I believe that this is what most people refer to as a master/details design.
What i would like to be able to do now is have the ability to email each details record to either one of my salesman via there personal email address.
Im familiar with sending a simple form via email.
objMail.send="ricksvoid@yahoo.com"
objMail.body=bodyTxt.text
objMail.subject=subjectTxt.text
My problem is that this doesnt seem to work when tyring to bind the objMail.body to an %eval% field which is basicly a select statenment from my database.
any suggestions??