I would like to be able to use the global.asax file to redirect to a page regardless of what parameters come before a specific reference (the parameters can be ignored).
routes.MapPageRoute("ExportToExcel", "Initial/{any}/Number/{of}/{parameters}/ExportToExcel", "~/Views/Excel/ExportToExcel.aspx", true);
I thought I would be able to use a wildcard such as:
routes.MapPageRoute("ExportToExcel", "Initial/*/ExportToExcel.aspx","~/Views/Excel/ExportToExcel.aspx", true )
Is this possible?