9

我使用以下代码在客户端显示来自服务器的异常消息:

    [WebMethod]
    [ScriptMethod(ResponseFormat = ResponseFormat.Json)]
    public static void test(String text)
    {
               try
               {
                    throw new Exception("Hello");
               }

               catch (Exception ex)
               {
                HttpContext.Current.Response.Write(ex.Message);
                throw new Exception(ex.Message, ex.InnerException);
               }

    }

客户端:

    $.ajax({
        url: 'DownloadFile.aspx/test',
        type: 'POST',
        contentType: 'application/json; charset=utf-8',
        // Pass the value as JSON string                 
        // You might need to include json2.js for the JSON.stringify
        //method: 'http://www.json.org/json2.js',
        async: false,
        dataType: "json",
        data: '{ "text": "' + text'"}',
        success: function(Result) {

        },

        error: function(xhr, textStatus, errorThrown) {
            var err = eval("(" + xhr.responseText + ")");
            alert(err.Message);
        }
    });

当我使用 localhost 时,我会在警报弹出窗口中看到“Hello”。当我在远程服务器上使用相同的代码时,出现一般系统错误。

如何获取向用户显示的异常消息文本?

4

1 回答 1

3

您需要<customErrors mode="Off" />在 web.config 中进行设置。

你可以在这里阅读更多

一般来说,您似乎有 mode="RemoteOnly" ,它仅向本地主机显示详细的异常消息。

于 2013-03-12T16:19:13.740 回答