C
csgraham74
HI all,
I want to implement this scenario: I need my ASP.NET website to
check a SQL table every 30 seconds and if there is a change to display
a message to user. I have created a panel control (pnlMessage) and
placed the message on it also made it default to visible = false. I
have placed a Timer control on my ASP.NET Web Form and set its Interval
= 30000 (30 seconds) it fires ok every 30 seconds and the code executes
it hits the line pnlMessage.visible = True but the panel doesnt
display. When I am debuging it also seems like the timer is still
runnig regardles of me debugging and also all my cookies seems to be
not readable any more. I think i am not using this control correctly
can someone give me an example pls?
I want to implement this scenario: I need my ASP.NET website to
check a SQL table every 30 seconds and if there is a change to display
a message to user. I have created a panel control (pnlMessage) and
placed the message on it also made it default to visible = false. I
have placed a Timer control on my ASP.NET Web Form and set its Interval
= 30000 (30 seconds) it fires ok every 30 seconds and the code executes
it hits the line pnlMessage.visible = True but the panel doesnt
display. When I am debuging it also seems like the timer is still
runnig regardles of me debugging and also all my cookies seems to be
not readable any more. I think i am not using this control correctly
can someone give me an example pls?