这是一个设置ViewBag
要显示的图像的操作。
public ActionResult UploadPhoto()
{
List<string> images = new List<string>();
foreach (var file in Directory.GetFiles(AlbumManager.GetAlbumName(SessionManager.CurrentSession.PropertyId, true)))
{
images.Add(Server.RelativePath(file));
}
ViewBag.Images = images;
return PartialView("UploadPhoto");
}
这是一个发布操作,用于删除所选图像。
[HttpPost]
public ActionResult DeletePhoto(string imageName)
{
AlbumManager.DeletePhoto(SessionManager.CurrentSession.PropertyId, imageName);
return UploadPhoto();
}
如您所见,一旦删除完成,我会将其重定向到UploadPhoto
必须打印当前存在的图像的操作。但是在回发后,删除的图像仍在显示。我非常不确定这种行为。请帮我解决这个问题。
我尝试使用以下代码清除模型状态DeletePhoto
,但没有用。
ModelState.Clear();
我的观点:
@using (Html.BeginForm("DeletePhoto", "Add", FormMethod.Post, new { id = "PhotoDelete" }))
{
<input type="hidden" name="imageName" id="imageName" />
<div class="thumnailsBox">
@foreach (var image in ViewBag.Images)
{
<div class="thumnailTails">
<span class="thumbimage">
<input id="imageSubmit" type="image" alt="No Image" src="@Url.Content(image)" /></span>
</div>
}
</div>
}
解决方案:
除了IronMan84的回答,这里是我的问题的实际解决方案:
[HttpPost]
public ActionResult DeletePhoto(string imageName)
{
AlbumManager.DeletePhoto(SessionManager.CurrentSession.PropertyId, imageName);
return JavaScript("location.reload(true)");
}
我正在渲染一个脚本以在此处重新加载页面。