ビューに次のような div ブロックがあります。
<div id="divStatus" style="margin-top:10px;width: 200px; height: 100px; overflow-y: scroll;">
</div>
次に、ビューから、ユーザーはコントローラーを呼び出すボタンをクリックします。コントローラーではいくつかのタスクが実行されるため、コントローラーからビュー内の div ブロックを更新したいと考えています。この div では、フレーズを出力します。
これを行う方法?
例:
public ActionResult()
{
// Do something
Update_DIV_in_View("some thing has been done"); <--- DIV in the view must be updated by appending this message
// Do another thing
Update_DIV_in_VIEW("another thing has been done");<--- DIV in the view must be updated by appending this message
.... and so on
// All things done
Update_DIV_in_VIEW("All things have been done");<--- DIV in the view must be updated by appending this message
return View();
}