私は次のようなものを持っています
@using (Ajax.BeginForm("Next", "Controll", null, new AjaxOptions() { UpdateTargetId = "updateRegion", InsertionMode = InsertionMode.Replace, HttpMethod = "GET" }))
{
<div id="updateRegion">
@Html.Partial("_callingFromPartial", Model.List[0])
</div>
}
@Html.RadioButtonFor(item => Model.OptionSelected, Model.IdOption, new { id = "select" + Model.IdOption })
<label>@Model.OptionText</label>
<input type="submit" value="Next"/>
[HttpGet]
public ActionResult Next(Bu.Models.ChoiceQuestion itemReturn)
{
CurrentItem = Itens[refe+1];
return PartialView("_callingFromPartial", CurrentItem);
}
#updateRegion で次のコンテンツを読み込もうとしていますが、「リソースが見つかりません」と表示されます。、これに問題はありますか?