c# winform httpWebResponse post出错
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# winform httpWebResponse post出错相关的知识,希望对你有一定的参考价值。
自己写了个程序,利用post获取某网站的信息,当进行到httpWebResponse = (HttpWebResponse)httpWebRequest.GetResponse()时会提示“服务器提交了协议冲突. Section=ResponseStatusLine”(有时出有时不出,好像跟电脑或网络有关)
百度了下,几个人都说要改webclient等来提交请求,但我仍想利用httpWebRequest.GetResponse(),不想改其他代码了
WinForm下的app.config文件中添加:
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
</system.net>
完整 app.config文件
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
</system.net>
</configuration>追问
上班时程序大部分时间都是正常的。。就是家里不能用。晚上试下,先谢过。
参考技术A 求指导,我也想知道C# winform 制作圆形窗体
制作winform不规则窗体,有一部分是圆形,设置TransparencyKey为背景色后,圆弧部分总是带一圈背景色无法消除
gdi+:获取背景色,遍历图像的坐标点,跟背景色一致的的就画掉 参考技术A http://www.cnblogs.com/haiq/articles/1751777.html追问如图,怎么去掉外面这一圈
以上是关于c# winform httpWebResponse post出错的主要内容,如果未能解决你的问题,请参考以下文章