问题描述
嗨
i有输入类型=文件,用于选择图像并保存在我的用户自定义文件夹中...
我也从jquery(追加)添加新的输入类型文件...并使用相同的程序保存在文件夹中..
但如果我保存使用asp.net的file.copy或file.move,它给出错误
无法使用找到文件'C:\Program Files(x86)\ Microsoft Visual Studio 9.0 \ Common7 \IDE\thumb9.jpg'。
我从图片夹中选择了thumb9.jpg并想保存为
Hi
i have input type="file" which i use to select image and save in my user defined folder...
also i add new input type file from jquery (append) ...and use same procedure to save in folder..
but if i save using asp.net's file.copy or file.move, it gives error as
Could not find file 'C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\thumb9.jpg'.
I selected from image thumb9.jpg from folder and want to save as
dayimagenew = Request.Files[DayImage1].FileName;
File.Move(dayimagenew, "D://SelImg/Test.jpg");
但上面给出错误
but the above is giving error
推荐答案
这篇关于使用输入类型文件上传图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!