I have a custom module that has an ActionLink to another ActionMethod in the module. If I don't add {*ModuleUrl} as the URL in the Page settings I get the dreaded "A potentially dangerous Request.Path value was detected from the client (?). Can I add this to the Route.config instead? I have tried a few different approaches but I haven't found the correct one yet.
Would I need to add this to the modules route.config or the main site route.config?
If this helps here is what I am doing for my proof of concept
Pages
CRM (Parent page)
Index (Child page of CRM)
Search (Child page of CRM) - Contains a view from the CRM Module
Search will have a list of results when clicking on one of the results it calls an actionlink of
Code:<%=Html.ActionLink("Sometext", "Customer",new {customerId="theCustomerId"})%>
Thanks,
Nick