My site is both used internally by our company (intranet) and externally by our clients (internet). I would like to use the Telerik CDN, but disable it for our intranet users. Is there a way to programmatically enable/disable CDN on the RadScriptManager and RadStyleSheetManager?
2 Answers, 1 is accepted
0
Accepted
T. Tsonev
Telerik team
answered on 08 Feb 2010, 03:41 PM
Hello,
You can do so by using a base class or a master page. For example:
protectedoverridevoidOnInit(EventArgs e)
{
base.OnInit(e);
var scriptMgr = RadScriptManager.GetCurrent(this) asRadScriptManager;
Watch a video
on how to optimize your support resource searches and
check out more tips
on the blogs.
Follow the status of features or bugs in
PITS
and vote for them to affect their priority.