0

我使用默认项目模板 (Visual Studio 2010, .NET 4.0) 设置了一个全新的空白 ASP.NET MVC 4 Web Api 项目。当我浏览到 时http://localhost:5234/Api/Values/a..a,我得到以下 HTML 结果:

<html>
    <head>
        <title>Bad Request</title>
        ...

如何覆盖此行为以便返回自定义 XML 或 JSON 错误结果?

4

1 回答 1

-1

尝试在您的 Web.Config 中进行设置

  <system.webServer>
    <httpErrors existingResponse="PassThrough" />
  </system.webServer>
于 2013-08-02T06:49:09.270 回答