我有一个将图像上传到服务器的表单,我可以在表单中获取图像和其他数据的文件名。
如何将图像转换为字符串以包含在html电子邮件中?
这是给我文件名的代码。
string PostedFileName = "not_set";
foreach (string fileName in HttpContext.Current.Request.Files)
{
HttpPostedFile file = HttpContext.Current.Request.Files[fileName];
PostedFileName = fileName;
}
MessageSent("TRUE - " + PostedFileName);