Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
重複の可能性: MVC PartialView を毎秒自動更新する方法
30 秒ごとに MVC の部分ビューを更新したい。ページ全体ではなく、その部分だけを更新するにはどうすればよいですか?
ページで setTimeout javascript タイマーを使用してみて、パーシャルをロードする ajax 関数を与えることができます。これはタイムアウト関数のプロトタイプです。
<script type='text/javascrit'> function loadPartial() { //your ajax call } $(document).ready(function () { setTimeout("loadPartial",30000); }); </script>