- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
public string UploadFileEx(string uploadfile, string url,string fileFormName,
string contenttype, NameValueCollection querystring, CookieContainer cookies
){
if ((fileFormName == null) ||
(fileFormName.Length == 0))
{
fileFormName = "file";
}
if ((contenttype == null) ||
(contenttype.Length == 0))
{
contenttype = "application/octet-stream";
}
string postdata;
postdata = "?";
if (querystring != null)
{
foreach (string key in querystring.Keys)
{
postdata += key + "=" + querystring.Get(key) + "&";
}
}
ArmHorse 16.11.2010 12:33 # −1
В данном коде есть претензии к использованию сложения для строк, вместо StringBuilder, который, если глянуть в оригинальный файл, используется автором в другом месте.