我使用uploadify工具上傳我的文件,但沒有發佈回來,我在發佈站點後面臨「IO錯誤」或「HTTP錯誤」問題。在asp.net中uploadify中的IO/HTTP錯誤mvc2
這是我的代碼示例:
$('#UploadFile').uploadify({
'uploader': '/Content/uploadify.swf',
'script': '/Home/uploadify',
'cancelImg': '/Content/cancel.png',
'folder': '/Content/UploadedFiles',
'auto': true
});
這是我的動作代碼
[HttpPost]
public string uploadify()
{
string fileDirectory = Server.MapPath(@"\Content\UploadedFiles\");
string signuterName = _fileStore.SaveUploadedFile(Request.Files[0], fileDirectory);
Session["SignuterfilePath"] = @"/Content/UploadedFiles/" + signuterName;
return signuterName;
}
http://www.uploadify.com/documentation/
感謝。
我們還需要您的控制器和操作的代碼。 – ZippyV 2011-03-10 09:36:03