I had not used ScriptManager
on my MasterPage as it was not required when I started developing the project, so I have an individual ScriptManager
and UpdatePanel
for each content page.
In the MasterPage now I've added a label which shows the current system time, and my client wants it to change asynchronously and give a live clock feeling. Can I change the label text in the master page from the content page using Timer
? So far I'm unable to achieve this, as I can't use an UpdatePanel
also in the MasterPage because there is no ScriptManager
tag.
So is there a way to achieve this?