Click to See Complete Forum and Search --> : PHP Pear's HTTP_Client equivalent in ASP.NET?


GarrettVD
01-08-2009, 01:49 PM
Hey guys and girls,

First off, I should say that I'm not exactly fluent with ASP.NET, although I have an extensive knowledge of PHP. I know that PHP uses Pear's HTTP_Client package to modify POST data before sending to a specific URL. But after quite a bit of research, I haven't been able to find the equivalent in ASP.NET.

So, in brief, my end goal is to modify POST data before sending to a specific address. Does such a thing exist in ASP.NET?

Thanks,

Ps. I'm using C#, as it's more similar (IMO) to the languages I'm familiar with.

debiguana
01-16-2009, 01:48 AM
You're looking for the System.Net.WebRequest Class. Check out the documentation on MSDN (http://msdn.microsoft.com/en-us/library/system.net.webrequest.aspx).

-Doug