samples of mega menu with css3
http://net.tutsplus.com/tutorials/html-css-techniques/how-to-build-a-kick-butt-css3-mega-drop-down-menu/
thanks to http://net.tutsplus.com/tutorials/html-css-techniques/how-to-build-a-kick-butt-css3-mega-drop-down-menu/
12 October 2012
04 October 2012
Disable web.config to be inherited to child/sub domain
there are two ways of doing this.
1. we could tell to parent domain web.config to not inherit all the element
Thanks to http://www.aspdotnetfaq.com/Faq/how-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx
1. we could tell to parent domain web.config to not inherit all the element
<location path="." inheritInChildApplications="false"><system.web>
...
</system.web>
</location>
Note: by doing this, all the element will not be inherited to sub domain.2. we could clear the child domain to not use the inherited element from parent config
<httpModules><clear/></httpModules>
Thanks to http://www.aspdotnetfaq.com/Faq/how-to-disable-web-config-inheritance-for-child-applications-in-subfolders-in-asp-net.aspx
Subscribe to:
Posts (Atom)