【www.gdgbn.com--php常用代码】

// 南京千里独行 2005-3-17

///
/// 进度信息处理委托
///

/// 已经完成的步骤数
/// 总的步骤数
public delegate void ProgressHandler( int CompletedStep , int TotalStep );

///
/// 通用函数集合
///

public class YYFCommon
{
///
/// 向指定URL使用POST方法发送数据的例程,本函数不进行错误处理
///

/// URL字符串
/// 要发送的二进制数据
/// 发送数据时的进度处理
/// 接受数据时的进度处理
/// 接受到的二进制数据
public static byte[] HttpPostData(
string strURL ,
byte[] bytSend ,
ProgressHandler SendProgress ,
ProgressHandler AcceptProgress )
{
// 发送数据
System.Net.HttpWebRequest myReq =(System.Net.HttpWebRequest) System.Net.WebRequest.Create( strURL );
myReq.Method = "POST" ;
System.IO.Stream myStream = myReq.GetRequestStream();
int iCount = 0 ;
if( SendProgress != null)
SendProgress( 0 , bytSend.Length );
while( iCount < bytSend.Length )
{

本文来源:http://www.gdgbn.com/jiaocheng/4497/