how to refresh my record count from database - asp.net?
i have in my asp.开发者_运维问答net web-page label
that contain result of count record query.
i need to see refresh this query and see the correct record count.
how to see it ? i need any timer ? how to do it without Flickers ?
can i get any sample C# asp.net code ?
thanks in advance
I think this is what you need
Client
http://roshanbh.com.np/2008/03/call-php-ajax-every-second-jquery.html
Server
YourAjaxMethod()
{
Response.Write("ContentForLabel");
Response.End();
}
精彩评论