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

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -