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?

link|improve this question

58% accept rate
feedback

1 Answer

Check this question: Upload files with HTTPWebrequest (multipart/form-data)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.