asp.net - How to make real time visit page -
i want make real time visit page take data database. use repeater binds dataset. works fine, when new row added, want show effect in feedjit's "real time visits" page.
i used jquery this:
$(document).ready(function () { $('.fadein').click(function () { $('.show').show('slow'); }); }); $(document).ready(function () { $(".fadein").trigger('click') });
but doesn't work. slides down whole repeater. should use other repeater or jquery problem?
use long pulling comet or signalr signalr best options real time updates.
Comments
Post a Comment