I have a web application and it has its default \[code\]web.config\[/code\] with all the needed settings so now I need to create a folder and in that folder I am implementing a Login page using the same membership tables as for the parent application. I am trying to allow certain roles to access that folder, I tried adding a web.config in that folder with the following mark up:\[code\]<?xml version="1.0"?><configuration> <system.web> <authorization> <allow roles="customers"/> <deny users="?" /> </authorization> </system.web></configuration>\[/code\]The issue I am having is that when I add this and I attempt to login, it sends me to the parent login page with a \[code\]ReturnUrl\[/code\] and thats because the parent has this line in the web config:\[code\]<authentication mode="Forms"> <forms loginUrl="~/login.aspx" timeout="20160" /></authentication>\[/code\]So i decided to add that to the web.config in the folder but with the correct url:\[code\]<?xml version="1.0"?><configuration> <system.web> <authentication mode="Forms"> <forms loginUrl="~/pages/customerlogin.aspx" timeout="20160" /> </authentication> <authorization> <allow roles="customers"/> <deny users="?" /> </authorization> </system.web></configuration>\[/code\]But now its telling me that this error:Exception Details: System.Web.HttpException: Could not load type 'Intelligencia.UrlRewriter.RewriterHttpModule'.I guess my question is, what should i be adding to that child \[code\]web.config\[/code\] so it works?, doesnt it inherit from the parent all of the other things it needs?. This is the first time I worked in these kind of issues of web.config settings in a subfolder.