現在のオブジェクトに子がある場合にユーザーにプロンプトを表示するアクションがあります。ユーザーは、子も更新するかどうかを選択できる必要があります。ユーザーがこのプロンプトに応答するのを処理するにはどうすればよいですか?
<tr>
<td><button type="submit" class="button">Save</button></td>
@if (Model.OrganizationHasChildren)
{
<td>@Html.ActionLink("Save", "AleMasterData", null, new {@class = "button",onclick = "return confirm('Do you want to apply the ALE Indicator change to the sub-clients also?');" })</td>
}
else
{
<td>@Html.ActionLink("Save", "AleMasterData", null, new {@class = "button"})</td>
}
</tr>