How do I add a timer to update div in FeaturePage?
If I add js:
setInterval(function(){ $('#plugin').load('" + FileName + @"'); }, 2000);
then it loads whole page. But how do I return just a content of single div? AbstractFeaturePage has virtual GetHtmlFragment - can I use that?
If I add js:
setInterval(function(){ $('#plugin').load('" + FileName + @"'); }, 2000);
then it loads whole page. But how do I return just a content of single div? AbstractFeaturePage has virtual GetHtmlFragment - can I use that?
Comment