我通过HttpSendRequest(hRequest, hdrs, strlen(hdrs), postdata, strlen(postdata))将一块数据提交给CGI,如果postdata比较小的话没有问题,可是当我的postdata比较大,比如几十k的时候服务器就会报如下的错:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<HTML><HEAD>
<TITLE>400 Bad Request</TITLE>
</HEAD><BODY>
<H1>Bad Request</H1>
Your browser sent a request that this server could not understand.<P>
Size of a request header field exceeds server limit.<P>


请问如何解决