开发者

how to refresh my record count from database - asp.net?

开发者 https://www.devze.com 2023-02-07 14:13 出处:网络
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.

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();
}
0

精彩评论

暂无评论...
验证码 换一张
取 消