本文介绍了帮助我从fileupload控件获取文件的路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我在C#中使用代码时
when i use the code in C#
string fullPath = Server.MapPath(fileupload1.PostedFile.FileName);
我希望结果为
C:\ Documents and Settings \ rajkumar.t \ Desktop \ vCard.vcf
但我得到的结果是
C:\ Documents and Settings \ rajkumar.t \ Desktop \ CRM \ form \ vCard.vcf
CRM/form是我的项目,文件上传控件在这里.
我必须增强什么?
i want the result as
C:\Documents and Settings\rajkumar.t\Desktop\vCard.vcf
but i got result as
C:\Documents and Settings\rajkumar.t\Desktop\CRM\form\vCard.vcf
CRM/form is my project the fileupload control is here.
what i have to enhance?
推荐答案
这篇关于帮助我从fileupload控件获取文件的路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!