我要用asp.net写一个发邮件的网页,用fileupload要怎样获取客户端电脑完整的文件路径。我今晚弄了很久,还是没办法获取到,,,,请高手指点,最好给点例子看下,谢谢!
客户端文件路径: PostedFile.FileName;
文件名称: FileInfo file = new FileInfo(name); string fileName = file.Name; 服务器端文件路径:Server.MapPath( " "); |
FileUpload myupload = new FileUpload();
将控件添加到页面
if (myupload.HasFile)
{
string filename = my.FileName;
}