javascript - Update HTML table after insertion on db from another page -
i developing simple web application .net mvc. application has 2 main pages (one operator , 1 client). client can insert rows in table. operator can read table. there way show table updated immediatly after client operation? reload partial view table every 3000 ms avoid it..
once page rendered client have 2 ways of forcing refresh. 1 javascript
settimeout("location.reload(true);", timeout);
the second meta tag:
<meta http-equiv="refresh" content="600">
Comments
Post a Comment