Specialty Forums
Security and Virus
General Hardware
CPUs/Overclocking
Networking
Digital Photo/Video
Office Software
PC Gaming
Console Gaming
Programming
Database
Web Development
Digital Home

General Forums
Windows XP
Windows Vista
Windows 95/98
Windows Me
Windows NT
Windows 2000
Win Server 2008
Win Server 2003
Windows 3.1
Linux
PDAs
BeOS
Novell Netware
OpenVMS
Solaris
Disk Op. System
Unix
Mac
OS/2

Drivers
Driver Scan
Driver Forum

Software
Automatic Updates

BIOS Updates

My Computing.Net

Solution Center

Free IT eBook

Howtos

Site Search

Message Find

RSS Feeds

Install Guides

Data Recovery

About

Home
Reply to Message Icon Go to Main Page Icon

http post in C#

Original Message
Name: coolkang
Date: February 25, 2005 at 10:03:16 Pacific
Subject: http post in C#
OS: xp
CPU/Ram: 512
Comment:
hello helper
I have a problem in passing a string to the http post site. the code example i have converted string to byte and send it to the http site. The problem with that is the http post site does not understand the encoding. So I want to know is there a way i can pass a string without converting it to byte? Thank you very much

Here is the code i have:

byte [] bytes = System.Text.Encoding.Unicode.GetBytes(postData);
req.ContentLength = bytes.Length;
System.IO.Stream os = req.GetRequestStream();
os.Write(bytes, 0, bytes.Length);


Report Offensive Message For Removal


Response Number 1
Name: Chi Happens
Date: March 1, 2005 at 06:14:51 Pacific
Subject: http post in C#
Reply: (edit)
Here's how to do a post using c#

private string HttpPost(string URI, string Parameters) 
{
   System.Net.WebRequest req = System.Net.WebRequest.Create(URI);
   req.Proxy = new System.Net.WebProxy(ProxyString, true);

   req.ContentType = "application/x-www-form-urlencoded";
   req.Method = "POST";

   byte [] bytes = System.Text.Encoding.ASCII.GetBytes(Parameters);
   req.ContentLength = bytes.Length;

   System.IO.Stream os = req.GetRequestStream ();
   os.Write (bytes, 0, bytes.Length); 
   os.Close ();

   System.Net.WebResponse resp = req.GetResponse();
   if (resp== null) return null;

   System.IO.StreamReader sr = new System.IO.StreamReader(resp.GetResponseStream());
   return sr.ReadToEnd().Trim();
}


Hope this helps,
Chi

They mostly come at night...mostly


Report Offensive Follow Up For Removal




Use following form to reply to current message:

   Name: From My Computing.Net Settings
 E-Mail: From My Computing.Net Settings

Subject: http post in C# 

Comments:

 
  Homepage URL (*): 
Homepage Title (*): 
         Image URL: 
 


Data Recovery Software




how to setup call of duty to joytok

WindowsME / HotMail Problem

Corrupt memory

Convert fat32 to Ntfs

Best WinMo phone of 2008


The information on Computing.Net is the opinions of its users. Such opinions may not be accurate and they are to be used at your own risk. Computing.Net cannot verify the validity of the statements made on this site. Computing.Net and Computing.Net, LLC hereby disclaim all responsibility and liability for the content of Computing.Net and its accuracy.
PLEASE READ THE FULL DISCLAIMER AND LEGAL TERMS BY CLICKING HERE

All content ©1996-2007 Computing.Net, LLC