Click here to Skip to main content
16,017,986 members

Comments by Member 14507998 (Top 2 by date)

Member 14507998 29-Sep-20 6:08am View    
Hi I need to refresh the data flowing to my asp.net pages into my sql tables every 1 second.
I can do this refresh using Timer.

<asp:scriptmanager id="ScriptManager1" runat="server">
<asp:timer id="Timer1" runat="server" interval="1000">


But when I do this, the event happens on the WebBrowser side and it creates trouble for the server since 30 forms will be running at the same time.

How can I do this refresh in form, not in webbrowser?
Can you help on the subject.
Thank you.
Member 14507998 27-Sep-20 4:30am View    
HiI need to refresh the data flowing to my asp.net pages into my sql tables every 1 second.
I can do this refresh using Timer.

<asp:scriptmanager id="ScriptManager1" runat="server">
<asp:timer id="Timer1" runat="server" interval="1000">


But when I do this, the event happens on the WebBrowser side and it creates trouble for the server since 30 forms will be running at the same time.

How can I do this refresh in form, not in webbrowser?
Can you help on the subject.
Thank you.