Hi Experts,
I want to send my User Control Page as Body of my Email.
My Function is:
public void SendMail(string MailSubject, Page mailBody)
I am calling the function on Button Click:
Page pa = new Page();
pa.LoadControl("Email.ascx");
SendMail("Test",pa);
Email Generated using the code shows Body part as:
System.Web.UI.Page
Please Help,
Thanks,
Rahul
Go to the complete details ...