私はsitemap.configを書いています。
<siteMapNode title="Shipping rate" nopResource="Admin.Configuration.Shipping.Rate" controller="Shipping" action="ConfigureProvider?systemName=Shipping.ByWeight" />
</siteMapNode>
これは、呼び出したい配送コントローラー関数です。
public ActionResult ConfigureProvider(string systemName)
{
if (!_permissionService.Authorize(StandardPermissionProvider.ManageShippingSettings))
return AccessDeniedView();
var srcm = _shippingService.LoadShippingRateComputationMethodBySystemName(systemName);
if (srcm == null)
//No shipping rate computation method found with the specified id
return RedirectToAction("Providers");
var model = srcm.ToModel();
string actionName, controllerName;
RouteValueDictionary routeValues;
srcm.GetConfigurationRoute(out actionName, out controllerName, out routeValues);
model.ConfigurationActionName = actionName;
model.ConfigurationControllerName = controllerName;
model.ConfigurationRouteValues = routeValues;
return View(model);
}
しかし、エラーがあります" A potentially dangerous Request.Path value was detected from the client (?) "
どうすればそれを愛することができますか。