From the docs:
https://www.capesoft.com/docs/NetTalk11/NetTalkWebBasic.htm#NetRefreshTriggering a table change from the WebServerYou now have browses watching the Host-Table value, and refreshing themselves when that changes. If the table changes via the web interface, or via another desktop app with NetRefresh (on the same LAN as the server) then you are done.
But what if the table changes via some other mechanism - like perhaps code in the WebServer procedure? In this case, in the web server procedure you can use
s_web.SetTableValue('tablename',today() & '-' & clock())
If you are in a WebHandler procedure (like WebHandler, or any NetWebBrowse, NetWebForm etc) then you can use
p_web.SetTableValue('tablename',today() & '-' & clock())
This will trigger a refresh event to the browses that are monitoring the table value.