I have the following code inside Default.aspx
{
AppStylingManager asm = AppStylingManager.Settings;
}
With the following line in Web.config:
<section name="infragistics.web" type="System.Configuration.SingleTagSectionHandler,System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
No matter what, when Page_Load fires
AppStylingManager.Settings reference returns null
On a side note, if I put the code AppStylingManager asm = AppStylingManager.Settings; incide of a WebUser control it actually returns a reference to the Settings object.
Thanks,