Author: niravparekh | Posted on: 6/1/2009 7:25:31 AM | Views : 797

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 ...