次の画像のような MVC3 Razor ビュー エンジンのビューがあります。ここで、新しいページではなく、このリンクテキストの下に表示される接続アクションの出力を確認したいと思います。どうすればこの作業を行うことができますか?
サンプルコードで説明してください。
私の見解 このように:
@model ESimSol.BusinessObjects.COA_ChartsOfAccount
@{
ViewBag.Title = "Dynamic Account Head Configure";
}
<h2>Dynamic Account Head Configure</h2>
<table border="0">
<tr>
<td> Select an Server Connection </td>
<td style="width:5px">:</td>
<td>@Html.DropDownListFor(m => m.DBConnections, Model.DBConnections.Select(x => new SelectListItem() { Text = x.ConnectionName, Value = x.DBConnectionID.ToString()}))</td>
</tr>
<tr>
<td> </td>
<td style="width:5px"></td>
<td>@Html.ActionLink("Confirm Connection", "ConformConnection")</td>
</tr>
</table>
AND My Controller アクション 次のように:
public ActionResult ConfirmConnection()
{
return PartialView();
}