I'm new to IG controls and haven't found any real answers to this question.
I want to use the ASF and have enabled it for the application in the web.config but it doesn't matter what I do I can't seem to get it to work at the appicatio level. I am trying to select the style when the app starts and am setting the StyleSetName in the page_load (have also tried page_init) of the default page (which doesn't have and NetAdvantage controls on it) but when I run the app the styling is wrong and the link to ig_shared.css is not in the markup.
So, my question: I would have expected the behavior of ASF at the application level to inject the ig_shared.css on every page in the app when it is built. Should this be my expected behavior? If it's not doing this is there something I should be referencing but have missed?
Put the following in your web.config in the <configuration> section, it should style everything in the application.
<infragistics.web enableAppStyling="true" styleSetName="myStyleName" styleSetPath="~/ig_res/"/>
I already have the two lines required in the web.config. I'm trying to determine what the what the expected behavior should be with regards to injecting style sheet links, it's not explained very well.
I need to know, web pages without infragistic controls on them have the link to the StyleSetName default.css injected?