Hi,
I am calling a designed WebPage to send it as Email Body. Here is my code to do that.
##########################################################################################################
String result;
HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(http://localhost/MyApp/MyDesignedPage.aspx);
WebResponse objResponse = objRequest.GetResponse();
Go to the complete details ...