Author: ZachSu | Posted on: 9/15/2010 4:03:34 PM | Views : 1044

hi everyone,
I am having a chart, and want to be able to click the "send it by email" and then popup an email window with the chart on the attachment.
However, the attachment does not show.
here is my code:

string ServerPath = Protocol + Request.ServerVariables["SERVER_NAME"] + Port + Request.ApplicationPath + @"/graphs/" + User.Identity.Name + graphID + ".jpg"; string mailToString = "mailto:?subject=Trade Graph&Body=See attachment for the charts, or please click: " + ServerPath + "&Attachment="+ServerPath; string popupScript = "<script language='javascript'>" + "window.open('" + mailToString + "', 'CustomPopUp', " + "'width ...

Go to the complete details ...