How get web config location element?
ConfigurationManager.GetSection(\"appSettings\") returns Okay ConfigurationManager.GetSection(\"location\") return null
Not sure if this is exactly what you want but you can get sections within the web.config location element like so...
AuthorizationSection pageAuthorizationSection = (AuthorizationSection)WebConfigurationManager.GetSection("system.web/authorization", "FOLDER/Page2.aspx");