public class UploadHandler : IHttpHandler
{
public void ProcessRequest(HttpContext context)
{
context.Response.Clear();
context.Response.ContentType = "text/plain";
context.Response.Expires = -1;
HttpPostedFile postedFile = context.Request.Files["Filedata"];
This snippet code is on server to handle image upload. I want to write an console app which upload image automatically from local machine to webserver. I'd like to use HttpWebRequest to do that. How can I it?