为什么在尝试将照片上传到服务器时会看到此错误: 我有这些代码: 在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);
}
错误是:
编辑:
我有一个名为taghbazar.ir
的域名并在其上托管。我购买了另一个名为uask.ir
的域名,并将我的托管空间从taghbazar.ir
更改为uask.ir
。我认为问题在那里。如何解决?
错误说: