HTTP 400错误

2021-04-08 20:27

阅读:598

标签:bre   exception   http   解决   段错误   div   get   ons   cep   

发送请求时出现400错误,错误代码为:webResponse = (HttpWebResponse)webRequest.GetResponse();

解决办法:抛出异常

HttpWebResponse webResponse;
            try
            {
               
                webResponse = (HttpWebResponse)webRequest.GetResponse();   //请求页面信息
            }
            catch (WebException ex)
            {
                webResponse = (HttpWebResponse)ex.Response;   //获得错误发生时候服务器段错误页面的源代码
            }

 

HTTP 400错误

标签:bre   exception   http   解决   段错误   div   get   ons   cep   

原文地址:https://www.cnblogs.com/my2020/p/12421912.html


评论


亲,登录后才可以留言!