将照片上传到服务器时出现运行时错误

时间:2013-05-15 19:33:45

标签: asp.net-mvc-4 upload runtime-error

为什么在尝试将照片上传到服务器时会看到此错误: 我有这些代码: 在Web.config中:

<configuration> 
    <system.web> 
        <httpRuntime maxRequestLength="2097152" /> 
    </system.web> 
</configuration>

上传:

public static void UploadImage(string folder, HttpPostedFileBase file)
    {
        string uploadFolderPath = HttpContext.Current.Server.MapPath("~/Images/" + folder);
        string fileName = Path.GetFileName(file.FileName);
        string filePath = Path.Combine(uploadFolderPath, fileName);
        file.SaveAs(filePath);
    }

错误是: enter image description here

编辑:

我有一个名为taghbazar.ir的域名并在其上托管。我购买了另一个名为uask.ir的域名,并将我的托管空间从taghbazar.ir更改为uask.ir。我认为问题在那里。如何解决? 错误说:

enter image description here

0 个答案:

没有答案